Hello boys,

I am trying to implement a thread into my gui application.
I intend to use this thread to make calcs and show the results in a table after this.
Well, I need get a finish signal from my thread and get the values to put into my tables.

how do I get this signal.

I´ve tried:
Qt Code:
  1. connect(thread, SIGNAL(finished()), SLOT(ThreadStop()));
To copy to clipboard, switch view to plain text mode 

But my application never enter in the slot threadstop.

Someone knows why?

Thanks in advanced.