tools/templates/main.cpp
author unc0rr
Tue, 06 Jan 2009 11:30:50 +0000
changeset 1585 9f9138531070
parent 359 59fbfc65fbda
permissions -rw-r--r--
Escape html characters in chat messages, nicknames and info to prevent screwing chat

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}