Hello:
First of all, thank you for your hard work.
I am using your code base to develop a QML plugin. I noticed that the signal messageReceived is not being "emitted". I made the following change and it worked.
Line 576 in amqp_queue.cpp (master branch as of today: April 19, 2013) reads:
emit pq_func()->messageReceived(pq_func());
had to change it to
QMetaObject::invokeMethod(pq_func(), "messageReceived");
for it to work.
My platform:
Qt 5.0.1
MacOS X 10.8.3 (Mountain Lion)
Thanks.
Hello:
First of all, thank you for your hard work.
I am using your code base to develop a QML plugin. I noticed that the signal messageReceived is not being "emitted". I made the following change and it worked.
Line 576 in amqp_queue.cpp (master branch as of today: April 19, 2013) reads:
emit pq_func()->messageReceived(pq_func());had to change it to
QMetaObject::invokeMethod(pq_func(), "messageReceived");for it to work.
My platform:
Qt 5.0.1
MacOS X 10.8.3 (Mountain Lion)
Thanks.