Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/SliderPuzzleWidget.py
diff options
context:
space:
mode:
authorAneesh Dogra <lionaneesh@gmail.com>2012-12-18 17:22:00 (GMT)
committer Aneesh Dogra <lionaneesh@gmail.com>2012-12-18 17:22:00 (GMT)
commit381577689496911d9b5661046f80bd92b421fc28 (patch)
tree6e5c803e90bae4fc29c82eb5259bf61e5aa5380a /SliderPuzzleWidget.py
parente613ca2924e44688f1629196773fe9d8753fe33d (diff)
Fixes.
Diffstat (limited to 'SliderPuzzleWidget.py')
-rw-r--r--SliderPuzzleWidget.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/SliderPuzzleWidget.py b/SliderPuzzleWidget.py
index 60e0b21..6a92739 100644
--- a/SliderPuzzleWidget.py
+++ b/SliderPuzzleWidget.py
@@ -404,9 +404,9 @@ class SliderPuzzleMap (object):
###
class SliderPuzzleWidget (Gtk.Table):
- __gsignals__ = {'solved' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),
- 'shuffled' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),
- 'moved' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),}
+ __gsignals__ = {'solved' : (GObject.SIGNAL_RUN_LAST, GObject.TYPE_NONE, ()),
+ 'shuffled' : (GObject.SIGNAL_RUN_LAST, GObject.TYPE_NONE, ()),
+ 'moved' : (GObject.SIGNAL_RUN_LAST, GObject.TYPE_NONE, ()),}
def __init__ (self, pieces=9, width=480, height=480):
self.jumbler = SliderPuzzleMap(pieces, self.jumblermap_piece_move_cb)