summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/designer/examples/colortool/main.cpp
blob: 8375c5918658b3b306bc056add14aaa58994c819 (plain)
1
2
3
4
5
6
7
8
9
10
#include <tqapplication.h>
#include "mainform.h"

int main( int argc, char ** argv )
{
    TQApplication a( argc, argv );
    MainForm *w = new MainForm;
    w->show();
    return a.exec();
}