tools/drawMapTest/main.cpp
author sheepluva
Sun, 11 Sep 2011 15:38:45 +0200
changeset 5850 f07e2a5e6ad0
parent 4425 2314bb0c433d
permissions -rw-r--r--
make "All Files" file filter in file dialog actually display all files rather then just those with a dot in their name

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

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