diff options
Diffstat (limited to 'src-qt5/desktop-utils/lumina-xdg-entry/main.cpp')
-rw-r--r-- | src-qt5/desktop-utils/lumina-xdg-entry/main.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp b/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp new file mode 100644 index 00000000..70ac8671 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp @@ -0,0 +1,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(); +} |