Hi,
is it ok to move the object owning the thread to the thread? Like in the example below.

a.h:
QThread* m_pThread;

a.cpp:
m_pThread = new QThread;
this->moveToThread(m_pThread);

Thanks!