Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <QApplication>
- #include <QLabel>
- #include <QPushButton>
- int main(int argc ,char *argv[]) {
- QApplication qapp(argc,argv);
- QPushButton* button = new QPushButton("bitch");
- QLabel* qlabel = new QLabel("<h2><i>Hello</i> bitches");
- QObject::connect(button,SIGNAL(clicked()),&qapp,SLOT(quit()));
- qlabel->show();
- button->show();
- return qapp.exec();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement