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

int main( int argc, char ** argv )
{
    TQApplication a( argc, argv );
    HelpDemo help;
    help.show();
    a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
    return a.exec();
}