tools/drawMapTest/main.cpp
author sheepluva
Sat, 22 Oct 2011 01:53:14 +0200
changeset 6177 5eba8970e8ae
parent 4425 2314bb0c433d
permissions -rw-r--r--
same for chat. changed the paths to: css/qt.css css/chat.css note: display:none is not supported by QTextBrowser, I might pimp it up to do so

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

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