This is code fragment:

Qt Code:
  1. ExcitThread eThread(this, eInfo);
  2. eThread.start(QThread::LowestPriority);
  3.  
  4. QWidget* widget = new QWidget(this);
  5. l->addWidget(new QLabel("Working..."));
  6. widget->setLayout(l);
  7. widget->show();
  8.  
  9. while(eThread.isRunning())
  10. usleep(100);
  11.  
  12. widget->close();
  13.  
  14. if(eThread.isOk())
  15. ...
To copy to clipboard, switch view to plain text mode 

The thing is I don't see "Working..." message. The (non GUI) ExcitThread does it's work fine.
Where is "Working..."?