summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperconf/khcmain.cpp
Side-by-side diff
Diffstat (limited to 'noncore/applets/keyhelper/keyhelperconf/khcmain.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/applets/keyhelper/keyhelperconf/khcmain.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/noncore/applets/keyhelper/keyhelperconf/khcmain.cpp b/noncore/applets/keyhelper/keyhelperconf/khcmain.cpp
new file mode 100644
index 0000000..757bde0
--- a/dev/null
+++ b/noncore/applets/keyhelper/keyhelperconf/khcmain.cpp
@@ -0,0 +1,11 @@
+#include <qpe/qpeapplication.h>
+#include "KHCWidget.h"
+
+int main(int argc, char* argv[])
+{
+ QPEApplication a(argc, argv);
+
+ KHCWidget w;
+ a.showMainWidget(&w);
+ return a.exec();
+}