ListElements/EasyStreet/main.cpp
changeset 42 b9716e8867f1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ListElements/EasyStreet/main.cpp	Fri Sep 03 10:38:13 2010 -0700
@@ -0,0 +1,17 @@
+#include <QtGui/QApplication>
+#include <QListWidget>
+#include "mainwindow.h"
+
+int main(int argc, char *argv[])
+{
+    QApplication a(argc, argv);
+    MainWindow w;
+
+#if defined(Q_WS_S60)
+    w.showMaximized();
+#else
+    w.show();
+#endif
+
+    return a.exec();
+}