diff options
Diffstat (limited to 'examples/distributor')
-rw-r--r-- | examples/distributor/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/distributor/main.cpp b/examples/distributor/main.cpp index 2a8a30cbe..9813afd82 100644 --- a/examples/distributor/main.cpp +++ b/examples/distributor/main.cpp @@ -6,6 +6,6 @@ int main( int argc, char ** argv ) TQApplication a( argc, argv ); Distributor w; w.show(); - a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( tquit() ) ); + a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) ); return a.exec(); } |