tools/drawMapTest/main.cpp
author koda
Sun, 08 Apr 2012 19:06:25 +0200
changeset 6864 6fdd23cdeaeb
parent 4425 2314bb0c433d
permissions -rw-r--r--
ios: schemes table was being drawn on top of the table border

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

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