tools/drawMapTest/main.cpp
author Ondrej Skopek <skopekondrej@gmail.com>
Fri, 14 Dec 2012 21:09:07 +0100
changeset 8299 ef2e284255cd
parent 4425 2314bb0c433d
permissions -rw-r--r--
Added handling of not registered nicks (no change-server side tho), clearPasswordHash() also now sets the savepassword setting to false

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

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