diff options
Diffstat (limited to 'examples/customlayout/main.cpp')
-rw-r--r-- | examples/customlayout/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/customlayout/main.cpp b/examples/customlayout/main.cpp index c6ccf72e4..b22f6ffcb 100644 --- a/examples/customlayout/main.cpp +++ b/examples/customlayout/main.cpp @@ -36,7 +36,7 @@ int main( int argc, char **argv ) b1->add( new TQPushButton( "More text", f ) ); b1->add( new TQPushButton( "Even longer button text", f ) ); TQPushButton* qb = new TQPushButton( "Quit", f ); - a.connect( qb, SIGNAL( clicked() ), SLOT( quit() ) ); + a.connect( qb, TQ_SIGNAL( clicked() ), TQ_SLOT( quit() ) ); b1->add( qb ); TQWidget *wid = new TQWidget( f ); |