summaryrefslogtreecommitdiff
path: root/noncore/settings/usermanager/main.cpp
Unidiff
Diffstat (limited to 'noncore/settings/usermanager/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/usermanager/main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/noncore/settings/usermanager/main.cpp b/noncore/settings/usermanager/main.cpp
new file mode 100644
index 0000000..aa78286
--- a/dev/null
+++ b/noncore/settings/usermanager/main.cpp
@@ -0,0 +1,19 @@
1/***************************************************************************
2 * *
3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or *
6 * (at your option) any later version. *
7 * *
8 ***************************************************************************/
9
10#include "usermanager.h"
11#include <qpe/qpeapplication.h>
12
13int main( int argc, char ** argv )
14{
15 QPEApplication a( argc, argv );
16 UserConfig mw(0,0,0);
17 a.showMainWidget( &mw );
18 return a.exec();
19}