diff options
author | q5sys <jt@obs-sec.com> | 2017-05-01 12:38:57 -0400 |
---|---|---|
committer | q5sys <jt@obs-sec.com> | 2017-05-01 12:38:57 -0400 |
commit | 01610a8efa628529ad4899827209a4181942d895 (patch) | |
tree | 803fddb1ee6095e1c35c782b2da04fe1c04eff04 /src-qt5/desktop-utils/lumina-xdg-entry/main.cpp | |
parent | Translated using Weblate (lumina_FM@lt (generated)) (diff) | |
download | lumina-01610a8efa628529ad4899827209a4181942d895.tar.gz lumina-01610a8efa628529ad4899827209a4181942d895.tar.bz2 lumina-01610a8efa628529ad4899827209a4181942d895.zip |
add inital commit for .desktop file creator
Diffstat (limited to 'src-qt5/desktop-utils/lumina-xdg-entry/main.cpp')
-rw-r--r-- | src-qt5/desktop-utils/lumina-xdg-entry/main.cpp | 16 |
1 files changed, 16 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..dc117447 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp @@ -0,0 +1,16 @@ +//=========================================== +// 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.show(); + + return a.exec(); +} |