On 04/03/2012 07:29 PM, ext Riccardo Roasio wrote:
> And so what i can do?

Read those docs.

In essence, you want something like this:

QThread *thread = new QThread;
MyObject *object = new MyObject;
object->moveToThread(thread);
thread->start();
connect(something, SIGNAL(blah()), object, SLOT(foo()));

-- 
Lincoln Ramsay - Senior Software Engineer
Qt Development Frameworks, Nokia - http://qt.nokia.com/
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to