main.cpp
author jake
Mon, 23 Aug 2010 14:05:40 +0300
changeset 4 63928ff6db8d
parent 0 b856a9924bbc
permissions -rw-r--r--
Added the setting file, which enables the automatic launch of the publisher. Fixed the issues with the .pkg files.

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