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