tools/drawMapTest/main.cpp
author unc0rr
Tue, 06 Sep 2011 20:53:26 +0400
changeset 5793 401ab167bd9f
parent 4425 2314bb0c433d
permissions -rw-r--r--
This should be a real fix (7643cbb88f09 reverted). Not tested.

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

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