tools/drawMapTest/main.cpp
author koda
Sat, 18 Jun 2011 03:14:45 +0200
changeset 5252 ded882439548
parent 4425 2314bb0c433d
permissions -rw-r--r--
file association for mac! associating file is done automatically when you move the app in your system but there is also a button to set it manually i had to disable argument parsing and to subclass qapplication to make this work please test

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

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