main.cpp
author jake
Mon, 11 Oct 2010 08:55:38 +0300
changeset 5 480fe05ec121
parent 0 b856a9924bbc
permissions -rw-r--r--
New release 0.1.b

#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();
}