Benoit Jacob wrote:
> Another possibility: is it illegal to wait for a QThread that was just
> constructed but not yet started?
> I.e.
> 
> thread = new MyThreadClass();
> wait(thread);

wait(thread)? wait()'s parameter is an integer timeout...

If you mean thread->wait(), the documentation says it "returns true if 
the thread has not been started yet". ie, it doesn't wait at all.

--
Jason Stubbs
_______________________________________________
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel

Reply via email to