Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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