tools/drawMapTest/main.cpp
author sheepluva
Tue, 01 Feb 2011 07:52:50 +0100 (2011-02-01)
changeset 4898 7a94005874c9
parent 4425 2314bb0c433d
permissions -rw-r--r--
stylesheet-based chat coloring (only internal for now)
#include <QtGui/QApplication>
#include "mainwindow.h"

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