summaryrefslogtreecommitdiff
path: root/core/pim/notes/main.cpp
authorhrw <hrw>2005-10-20 14:55:34 (UTC)
committer hrw <hrw>2005-10-20 14:55:34 (UTC)
commit57abd83eb7b79b95301de36dc178174d9b28b6c2 (patch) (side-by-side diff)
treeb869bb94ec37a278bfed66877a1320d807399f94 /core/pim/notes/main.cpp
parent0f25331618ea6cac8a59f2c2298a9e1684748b97 (diff)
downloadopie-57abd83eb7b79b95301de36dc178174d9b28b6c2.zip
opie-57abd83eb7b79b95301de36dc178174d9b28b6c2.tar.gz
opie-57abd83eb7b79b95301de36dc178174d9b28b6c2.tar.bz2
added Opie-Notes
Diffstat (limited to 'core/pim/notes/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/notes/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/pim/notes/main.cpp b/core/pim/notes/main.cpp
new file mode 100644
index 0000000..c69fa93
--- a/dev/null
+++ b/core/pim/notes/main.cpp
@@ -0,0 +1,12 @@
+#include "mainwindow.h"
+
+int main(int argc, char* argv[])
+{
+ QPEApplication a(argc, argv);
+
+ mainWindowWidget mainWindow;
+
+ a.showMainWidget(&mainWindow);
+
+ return a.exec();
+}