tools/drawMapTest/main.cpp
author koda
Sun, 02 Dec 2012 14:51:54 +0100
changeset 8184 e0c8fad98022
parent 4425 2314bb0c433d
permissions -rw-r--r--
resize the qt window to fill 2/3 of the screen size (no more crammed widgets on first launch) and always center it

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

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}