+ port RegExp utility to Qt4

This commit is contained in:
wmayer
2014-08-21 17:32:30 +02:00
parent 2732a324e8
commit 7815fed8df
7 changed files with 352 additions and 243 deletions

View File

@@ -27,13 +27,12 @@
int main( int argc, char** argv )
{
QApplication app( argc, argv );
QApplication app(argc, argv);
RegExpDialog dialog( 0, 0, TRUE );
app.setMainWidget(&dialog);
RegExpDialog dialog(0);
app.setActiveWindow(&dialog);
dialog.exec();
dialog.exec();
return 0;
return 0;
}