Advertisement
spvnst

Untitled

Oct 12th, 2021
1,692
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "main.h"
  2. #include <QApplication>
  3. MainWindow *mainwindow= nullptr;
  4. int main(int argc, char *argv[]) {
  5.  
  6.     QApplication app(argc, argv);
  7.     MainWindow a;
  8.     a.resize(1200,800);
  9.     a.show();
  10.     mainwindow= &a;
  11.     return app.exec();
  12.  
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement