diff -r b56d7e268634 -r b9716e8867f1 ListElements/EasyStreet/main.cpp --- /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 +#include +#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(); +}