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

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