summaryrefslogtreecommitdiffstats
path: root/examples/hello/hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello/hello.cpp')
-rw-r--r--examples/hello/hello.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello/hello.cpp b/examples/hello/hello.cpp
index a1782cf0..a1f5f9ed 100644
--- a/examples/hello/hello.cpp
+++ b/examples/hello/hello.cpp
@@ -22,7 +22,7 @@ Hello::Hello( const char *text, TQWidget *parent, const char *name )
: TQWidget(parent,name), t(text), b(0)
{
TQTimer *timer = new TQTimer(this);
- connect( timer, SIGNAL(timeout()), SLOT(animate()) );
+ connect( timer, TQ_SIGNAL(timeout()), TQ_SLOT(animate()) );
timer->start( 40 );
resize( 260, 130 );