SOLVED
Change:
Qt Code:
  1. connect( th, SIGNAL( started() ), vFilePrev, SLOT( makePreview() ));
To copy to clipboard, switch view to plain text mode 
and:
Qt Code:
  1. public slots:
  2. void makePreview( );
To copy to clipboard, switch view to plain text mode 
I would like to know why when I use
connect( th, SIGNAL(started()), this, SLOT(threadStarted()));
the function in this SLOT is run but thread don't seams to react properly (is it because the SLOT is in the same Thread as the QThread, with is GUI thread?).
I saw in the sysinternals that thread is actually created but never quit's, but when I connect actual Thread code to the SIGNA(started()); QThread react properly (at least with this simple example).