tools/drawMapTest/main.cpp
author Xeli
Sat, 18 Feb 2012 13:52:37 +0100
changeset 6710 42504695122d
parent 4425 2314bb0c433d
permissions -rw-r--r--
fixed the active region on widgets when they are animated, added active.x:= in uWorld too

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

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