blob: 70ac86717653bbf1bd29ba8d9a68805a6faae798 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//===========================================
// Copyright (c) 2017, q5sys (JT)
// Available under the MIT license
// See the LICENSE file for full details
//===========================================
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.setWindowTitle(".Desktop Creator");
w.show();
return a.exec();
}
|