tools/drawMapTest/main.cpp
author Henek
Thu, 30 Dec 2010 01:44:55 +0100
changeset 4782 603916ddf4b6
parent 4425 2314bb0c433d
permissions -rw-r--r--
added also splash and droplets to sd and refactored theme.cfg, not all themes updated

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

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