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

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