tools/drawMapTest/main.cpp
author unc0rr
Sat, 18 Dec 2010 21:17:12 +0300
changeset 4556 c7f4eb6cbd0c
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make use of showEvent, so there's no more need in manual resizing of draw map widget

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

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