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

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