author | John Kern <johnk@symbian.org> |
Wed, 31 Mar 2010 16:09:36 -0700 | |
changeset 11 | f3dbeee07821 |
parent 3 | e6d1a78b6db9 |
child 12 | 60c644f011c7 |
permissions | -rwxr-xr-x |
#include <QtGui/QApplication> #include "mainwindow.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; w.createMenus(); w.setWindowTitle("Seafood T"); w.setStyleSheet("* { background-color:rgb(199,147,88); padding: 7px ; color:rgb(255,255,255)}"); #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) w.showMaximized(); #else w.show(); #endif return a.exec(); }