tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Oct 2018 18:54:24 +0200
changeset 13970 f791c46b47a4
parent 4425 2314bb0c433d
permissions -rw-r--r--
Remove double space at end of chat messages from server

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

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