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

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