tools/drawMapTest/main.cpp
author unc0rr
Fri, 22 Feb 2013 23:24:20 +0400
changeset 8550 17378d33e62e
parent 4425 2314bb0c433d
permissions -rw-r--r--
This change from r0cd63b963330 caused more troubles than solved. Also fix some warnings.

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

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