equal
deleted
inserted
replaced
4 int main(int argc, char *argv[]) |
4 int main(int argc, char *argv[]) |
5 { |
5 { |
6 QApplication a(argc, argv); |
6 QApplication a(argc, argv); |
7 MainWindow w; |
7 MainWindow w; |
8 w.createMenus(); |
8 w.createMenus(); |
9 w.setWindowTitle("Seafood T"); |
9 w.setWindowTitle("Seafood"); |
10 w.setStyleSheet("* { background-color:rgb(199,147,88); padding: 7px ; color:rgb(255,255,255)}"); |
10 w.setStyleSheet("* { background-color:rgb(199,147,88); padding: 7px ; color:rgb(255,255,255)}"); |
11 #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) |
11 #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) |
12 w.showMaximized(); |
12 w.showMaximized(); |
13 #else |
13 #else |
14 w.show(); |
14 w.show(); |