tools/drawMapTest/main.cpp
author sheepluva
Tue, 18 Oct 2011 00:01:26 +0200
changeset 6145 e658c6f698dd
parent 4425 2314bb0c433d
permissions -rw-r--r--
don't hoard empty friends/ignore-lists on the HDD

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

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