podcatcher_qt/src/main.cpp
branchpodcatcher_qt_symbian4
changeset 216 1f5e22508b46
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/podcatcher_qt/src/main.cpp	Mon Aug 23 06:14:01 2010 +0200
@@ -0,0 +1,16 @@
+#include <QtGui/QApplication>
+#include "podcatcherwin.h"
+
+int main(int argc, char *argv[])
+{
+    QApplication a(argc, argv);
+    PodcatcherWin w;
+
+#if defined(Q_WS_S60)
+    w.showMaximized();
+#else
+    w.show();
+#endif
+
+    return a.exec();
+}