tools/drawMapTest/main.cpp
author unc0rr
Sat, 25 Dec 2010 22:22:33 +0300
changeset 4676 ce0bdd4f4e91
parent 4425 2314bb0c433d
permissions -rw-r--r--
Some fixes in ru translation

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

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