Advertisement
adilima

Qt4 TestLabel

Feb 20th, 2012
3,518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <QtGui>
  2.  
  3. int main(int argc, char** argv)
  4. {
  5.     QApplication app(argc, argv);
  6.     QLabel label("This is a test");
  7.     label.show();
  8.     return app.exec();
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement