tools/drawMapTest/main.cpp
author Xeli
Wed, 10 Aug 2011 01:50:57 +0200
branchhedgeroid
changeset 5534 7f3a391a66fb
parent 4425 2314bb0c433d
permissions -rw-r--r--
typo on the nullpointer check

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

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