Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/VisualMatchActivity.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2009-12-05 22:14:38 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-12-05 22:14:38 (GMT)
commit1acf794d8ef72d1424a3ff3f6b00b63c73abd2d8 (patch)
treee6afb257f898239559fc76b2f758924c0574f20e /VisualMatchActivity.py
parentc2daa3ea24f91bbf3daa5711d0b5971a587eb610 (diff)
cleaning up variable names
Diffstat (limited to 'VisualMatchActivity.py')
-rw-r--r--VisualMatchActivity.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/VisualMatchActivity.py b/VisualMatchActivity.py
index 40f771e..023ef89 100644
--- a/VisualMatchActivity.py
+++ b/VisualMatchActivity.py
@@ -165,33 +165,33 @@ class VisualMatchActivity(activity.Activity):
self.show_all()
# Initialize the canvas
- self.tw = window.new_window(canvas, \
+ self.vmw = window.new_window(canvas, \
os.path.join(activity.get_bundle_path(), \
'images/card-'), \
self)
# Read the high score from the Journal
try:
- self.tw.low_score = int(self.metadata['low_score'])
+ self.vmw.low_score = int(self.metadata['low_score'])
except:
- self.tw.low_score = -1
+ self.vmw.low_score = -1
#
# Write the slider positions to the Journal
#
def write_file(self, file_path):
- self.metadata['low_score'] = self.tw.low_score
+ self.metadata['low_score'] = self.vmw.low_score
#
# Button callbacks
#
def _button1_cb(self, button, activity):
- self.show_button1(activity.tw)
+ self.show_button1(activity.vmw)
return True
- def show_button1(self, tw):
+ def show_button1(self, vmw):
self.button1.set_icon("new-game-on")
- window.new_game(tw)
+ window.new_game(vmw)
self.button1.set_icon("new-game")
def _journal_cb(self, button, path):