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)
{
QMetaObject::invokeMethod(pq_func(), "messageRecieved");
QMetaObject::invokeMethod(pq_func(), "messageReceived");
}
}

View File

@ -77,7 +77,7 @@ namespace QAMQP
void declared();
void binded(bool);
void removed();
void messageRecieved();
void messageReceived();
void empty();
private:

View File

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