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

int main( int argc, char ** argv )
{
    TQApplication a( argc, argv );
    AddressBook *w = new AddressBook;
    w->show();
    a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( tquit() ) );
    return a.exec();
}