diff options
Diffstat (limited to 'qtjava/javalib/examples/hello/Hello.java')
-rw-r--r-- | qtjava/javalib/examples/hello/Hello.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtjava/javalib/examples/hello/Hello.java b/qtjava/javalib/examples/hello/Hello.java index 5247d495..fec25073 100644 --- a/qtjava/javalib/examples/hello/Hello.java +++ b/qtjava/javalib/examples/hello/Hello.java @@ -28,7 +28,7 @@ Hello( String text, TQWidget parent, String name ) super(parent,name); t = text; 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 ); |