tools/templates/main.cpp
author unc0rr
Fri, 28 Nov 2008 16:45:31 +0000
changeset 1520 f72f538eba05
parent 359 59fbfc65fbda
permissions -rw-r--r--
Refactor chat widget to use QTextBrower instead of QListWidget: - Fixes visual glitches when the string is too long - Allows to select text

#include <QApplication>

#include "mainform.h"

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