tools/drawMapTest/main.cpp
author nemo
Tue, 19 Apr 2011 15:34:21 -0400
changeset 5165 91fb710a6668
parent 4425 2314bb0c433d
permissions -rw-r--r--
Disable Digital/Beach since Tiy's made clear he feels the problems are too extensive to fix. Remove Chunk from Beach theme due copyright violation

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

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