Seafood/main.cpp
author John Kern <johnk@symbian.org>
Thu, 01 Apr 2010 13:36:35 -0700
changeset 12 60c644f011c7
parent 11 f3dbeee07821
child 13 92f7e918c7b5
permissions -rwxr-xr-x
fix for datebase skew

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.createMenus();
    w.setWindowTitle("Seafood");
    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();
}