summaryrefslogtreecommitdiffstats
path: root/examples/regexptester/main.cpp
blob: a31305feb6c5e7f2a56df88d98eb439d3f1adaa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <tqapplication.h>
#include "regexptester.h"

int main(int argc, char **argv)
{
    TQApplication app(argc, argv);
    RegexpTester form;
    form.show();
    app.connect(&app, TQ_SIGNAL(lastWindowClosed()), &app, TQ_SLOT(quit()));
    return app.exec();
}