summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/stockticker/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/todayplugins/stockticker/stockticker/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/stockticker/main.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/noncore/todayplugins/stockticker/stockticker/main.cpp b/noncore/todayplugins/stockticker/stockticker/main.cpp
new file mode 100644
index 0000000..da8da66
--- a/dev/null
+++ b/noncore/todayplugins/stockticker/stockticker/main.cpp
@@ -0,0 +1,25 @@
+
+/***************************************************************************
+ main.cpp - description
+ -------------------
+ begin : March 10, 2002
+ copyright : (C) 2002 by llornkcor
+ email : ljp@llornkcor.com
+ * 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 <qpe/qpeapplication.h>
+#include "inputDialog.h"
+
+int main(int argc, char *argv[])
+{
+ QPEApplication a(argc, argv);
+
+ InputDialog input;
+ a.showMainWidget( &input);
+ return a.exec();
+}
+
+