summaryrefslogtreecommitdiff
path: root/noncore/settings/sshkeys/main.cpp
Unidiff
Diffstat (limited to 'noncore/settings/sshkeys/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sshkeys/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/noncore/settings/sshkeys/main.cpp b/noncore/settings/sshkeys/main.cpp
new file mode 100644
index 0000000..37be8bf
--- a/dev/null
+++ b/noncore/settings/sshkeys/main.cpp
@@ -0,0 +1,14 @@
1
2#include <qpe/qpeapplication.h>
3#include "sshkeys.h"
4
5int main(int argc, char *argv[])
6{
7 QPEApplication a(argc, argv);
8 SSHKeysApp app;
9
10 a.showMainWidget(&app);
11
12 return a.exec();
13}
14