main.cpp
author jake
Tue, 26 Oct 2010 15:51:44 +0300
changeset 7 640db2c8587d
parent 0 b856a9924bbc
permissions -rw-r--r--
widget icon and description added to manifest.dat

#include <QtGui/QApplication>
#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();
}