diff options
Diffstat (limited to 'tutorial/t8/main.cpp')
-rw-r--r-- | tutorial/t8/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/t8/main.cpp b/tutorial/t8/main.cpp index 858411c58..97947afe4 100644 --- a/tutorial/t8/main.cpp +++ b/tutorial/t8/main.cpp @@ -27,7 +27,7 @@ MyWidget::MyWidget( TQWidget *parent, const char *name ) TQPushButton *quit = new TQPushButton( "Quit", this, "quit" ); quit->setFont( TQFont( "Times", 18, TQFont::Bold ) ); - connect( quit, SIGNAL(clicked()), qApp, SLOT(quit()) ); + connect( quit, SIGNAL(clicked()), tqApp, SLOT(quit()) ); LCDRange *angle = new LCDRange( this, "angle" ); angle->setRange( 5, 70 ); |