summaryrefslogtreecommitdiffstats
path: root/tutorial/t5/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/t5/main.cpp')
-rw-r--r--tutorial/t5/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tutorial/t5/main.cpp b/tutorial/t5/main.cpp
index cbc5c00a..2b9a710d 100644
--- a/tutorial/t5/main.cpp
+++ b/tutorial/t5/main.cpp
@@ -25,7 +25,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()), tqApp, SLOT(quit()) );
+ connect( quit, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) );
TQLCDNumber *lcd = new TQLCDNumber( 2, this, "lcd" );
@@ -33,7 +33,7 @@ MyWidget::MyWidget( TQWidget *parent, const char *name )
slider->setRange( 0, 99 );
slider->setValue( 0 );
- connect( slider, SIGNAL(valueChanged(int)), lcd, SLOT(display(int)) );
+ connect( slider, TQ_SIGNAL(valueChanged(int)), lcd, TQ_SLOT(display(int)) );
}
int main( int argc, char **argv )