aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins/alarm/main.cpp
diff options
context:
space:
mode:
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.cpp18
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();
+}
bgstack15