summaryrefslogtreecommitdiff
path: root/noncore/multimedia/tonleiter/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/multimedia/tonleiter/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/tonleiter/main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/noncore/multimedia/tonleiter/main.cpp b/noncore/multimedia/tonleiter/main.cpp
new file mode 100644
index 0000000..0eaa162
--- a/dev/null
+++ b/noncore/multimedia/tonleiter/main.cpp
@@ -0,0 +1,19 @@
+/***************************************************************************
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ ***************************************************************************/
+
+#include "mainwidget.h"
+#include <qpe/qpeapplication.h>
+
+int main(int argc, char* argv[])
+{
+ QPEApplication a(argc, argv);
+ MainWidget mw;
+ a.showMainWidget( &mw);
+ return a.exec();
+}
+
+