Typo: messageRecieved -> messageReceived

This commit is contained in:
Michel D'HOOGE 2013-02-19 10:56:05 +01:00
parent 6f91b3b2b9
commit e2c77e13d8
3 changed files with 5 additions and 5 deletions

View File

@ -562,6 +562,6 @@ void QueuePrivate::_q_body( int channeNumber, const QByteArray & body )
if(message->leftSize == 0 && messages_.size() == 1) if(message->leftSize == 0 && messages_.size() == 1)
{ {
QMetaObject::invokeMethod(pq_func(), "messageRecieved"); QMetaObject::invokeMethod(pq_func(), "messageReceived");
} }
} }

View File

@ -77,7 +77,7 @@ namespace QAMQP
void declared(); void declared();
void binded(bool); void binded(bool);
void removed(); void removed();
void messageRecieved(); void messageReceived();
void empty(); void empty();
private: private:
@ -88,4 +88,4 @@ namespace QAMQP
#ifdef QAMQP_P_INCLUDE #ifdef QAMQP_P_INCLUDE
# include "amqp_queue_p.h" # include "amqp_queue_p.h"
#endif #endif
#endif // amqp_queue_h__ #endif // amqp_queue_h__

View File

@ -21,8 +21,8 @@ Test::Test()
connect(queue2_, SIGNAL(declared()), this, SLOT(declared())); connect(queue2_, SIGNAL(declared()), this, SLOT(declared()));
connect(queue_, SIGNAL(messageRecieved()), this, SLOT(newMessage())); connect(queue_, SIGNAL(messageReceived()), this, SLOT(newMessage()));
connect(queue2_, SIGNAL(messageRecieved()), this, SLOT(newMessage())); connect(queue2_, SIGNAL(messageReceived()), this, SLOT(newMessage()));
} }
Test::~Test() Test::~Test()