blob: 437173088d665769d73e4d9c17213891d9c98323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <tqapplication.h>
#include "startup.h"
int main( int argc, char **argv )
{
TQApplication a( argc, argv );
StartUp s;
TQObject::connect( &a, TQ_SIGNAL(lastWindowClosed()), &a, TQ_SLOT(quit()) );
return a.exec();
}
|