summaryrefslogtreecommitdiff
path: root/noncore/multimedia/tonleiter/main.cpp
Unidiff
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 @@
1/***************************************************************************
2 * This program is free software; you can redistribute it and/or modify *
3 * it under the terms of the GNU General Public License as published by *
4 * the Free Software Foundation; either version 2 of the License, or *
5 * (at your option) any later version. *
6 ***************************************************************************/
7
8#include "mainwidget.h"
9#include <qpe/qpeapplication.h>
10
11int main(int argc, char* argv[])
12{
13 QPEApplication a(argc, argv);
14 MainWidget mw;
15 a.showMainWidget( &mw);
16 return a.exec();
17}
18
19