diff options
author | q5sys <jt@obs-sec.com> | 2017-03-09 11:44:41 -0500 |
---|---|---|
committer | q5sys <jt@obs-sec.com> | 2017-03-09 11:44:41 -0500 |
commit | 5a1a8b47ea784cc004f6e0e00d92e68204515364 (patch) | |
tree | 3f573c38a129b1618198a44a72c0928acd4be1a4 /src-qt5/core/lumina-desktop/panel-plugins/alarm/main.cpp | |
parent | Merge branch 'master' of http://github.com/trueos/lumina (diff) | |
download | lumina-5a1a8b47ea784cc004f6e0e00d92e68204515364.tar.gz lumina-5a1a8b47ea784cc004f6e0e00d92e68204515364.tar.bz2 lumina-5a1a8b47ea784cc004f6e0e00d92e68204515364.zip |
add alarm panel-plugin
Diffstat (limited to 'src-qt5/core/lumina-desktop/panel-plugins/alarm/main.cpp')
-rw-r--r-- | src-qt5/core/lumina-desktop/panel-plugins/alarm/main.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/alarm/main.cpp b/src-qt5/core/lumina-desktop/panel-plugins/alarm/main.cpp new file mode 100644 index 00000000..b103c4cb --- /dev/null +++ b/src-qt5/core/lumina-desktop/panel-plugins/alarm/main.cpp @@ -0,0 +1,18 @@ +//=========================================== +// qalarm source code +// Copyright (c) 2017, q5sys +// 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(); +} |