| 12345678910111213 |
- #include "mainwindow.h"
- #include <QApplication>
- int main(int argc, char *argv[])
- {
- QApplication app(argc, argv);
- app.setStyle("Fusion");
- app.setWindowIcon(QIcon(":/qrc/icons/ads_icon.svg"));
- MainWindow w;
- w.show();
- return app.exec();
- }
|