Hi all,

I 'm using linux box, with Qt 3.

When I used qWarning to print a warning message, cant get that text on the screen.

Where can I get that message. Here is my simple program.

Qt Code:
  1. #include <qapplication.h>
  2.  
  3. int main ( int anArgumentCount, char** anArguments )
  4. {
  5. QApplication anApplication ( anArgumentCount, anArguments );
  6.  
  7. qWarning ( "warning message ");
  8.  
  9. return anApplication.exec ();
  10.  
  11. }
To copy to clipboard, switch view to plain text mode 

Thx in advance