tools/drawMapTest/main.cpp
author sheepluva
Mon, 31 Jan 2011 08:45:05 +0100
changeset 4892 b0610081ee95
parent 4425 2314bb0c433d
permissions -rw-r--r--
nicklist actions: * changed order * double-click will trigger the first action * "follow"-action not available in rooms

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

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