Advertisement
TShiva

Hello world and other fucking bitches

Jan 31st, 2017
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. #include <QApplication>
  3. #include <QLabel>
  4. #include <QPushButton>
  5.  
  6. int main(int argc ,char *argv[]) {
  7.  
  8.     QApplication qapp(argc,argv);
  9.     QPushButton* button = new QPushButton("bitch");
  10.     QLabel* qlabel = new QLabel("<h2><i>Hello</i> bitches");
  11.     QObject::connect(button,SIGNAL(clicked()),&qapp,SLOT(quit()));
  12.  
  13.     qlabel->show();
  14.     button->show();
  15.     return qapp.exec();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement