signal qt from a non-qt thread, QueuedConnection
Posted
by lj8888
on Stack Overflow
See other posts from Stack Overflow
or by lj8888
Published on 2010-04-22T09:04:18Z
Indexed on
2010/04/22
10:13 UTC
Read the original article
Hit count: 389
hello,
I am signaling my Qt GUI thread from a boost::thread, and I am using a Qt::QueuedConnection,
connect(src, SIGNAL(signal-signature), dest, SLOT(slot-signature), Qt::QueuedConnection);
and still, when I emit the signal my slot does not get called.
© Stack Overflow or respective owner