summaryrefslogtreecommitdiffstats
path: root/examples/aclock.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/aclock.py')
-rwxr-xr-xexamples/aclock.py2
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):