diff options
Diffstat (limited to 'examples/aclock.py')
-rwxr-xr-x | examples/aclock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/aclock.py b/examples/aclock.py index ca81eb3..7754c32 100755 --- a/examples/aclock.py +++ b/examples/aclock.py @@ -11,7 +11,7 @@ class AnalogClock(TQWidget): TQWidget.__init__(*(self,) + args) self.time = TQTime.currentTime() internalTimer = TQTimer(self) - self.connect(internalTimer, SIGNAL("timeout()"), self.timeout) + self.connect(internalTimer, TQ_SIGNAL("timeout()"), self.timeout) internalTimer.start(5000) def timeout(self): |