tools/drawMapTest/main.cpp
author nemo
Sat, 20 Aug 2011 16:31:20 -0400
changeset 5610 f8bdc789ac60
parent 4425 2314bb0c433d
permissions -rw-r--r--
-gh (heaptrace) appears to be the reason for crashing in DrawCircle on my system. I wonder if it has other bad behaviour as well.

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

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