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

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