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

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