Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-12-06 18:47:52 (GMT)
committer Ignacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-12-06 18:47:52 (GMT)
commit14a14671c2bc1b1cee046d235f71ca21096b4e1c (patch)
tree65c9f5c68f72e29a82f0da153afe57b68f27b3a2
parent86b88f0f18bf63ef8e2d493e467ed2a198968cfa (diff)
Fix function namegtk3
-rw-r--r--stopwatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/stopwatch.py b/stopwatch.py
index 00e9b13..2551837 100644
--- a/stopwatch.py
+++ b/stopwatch.py
@@ -260,7 +260,7 @@ class OneWatchView():
thread.start_new_thread(self._start_running, ())
- def actived(self):
+ def activated(self):
return self._radiobutton.get_active()
def get_number(self):
@@ -491,7 +491,7 @@ class GUIView():
def get_all(self):
radiobutton_number = 0
for view in self._views:
- if view.actived():
+ if view.activated():
radiobutton_number = view.get_number()
break