Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cardtable.py
diff options
context:
space:
mode:
Diffstat (limited to 'cardtable.py')
-rw-r--r--cardtable.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/cardtable.py b/cardtable.py
index 2c4a712..bcb44e4 100644
--- a/cardtable.py
+++ b/cardtable.py
@@ -34,9 +34,11 @@ import theme
class CardTable(Gtk.EventBox):
__gsignals__ = {
- 'card-flipped': (GObject.SignalFlags.RUN_FIRST, None, [int, object]),
+ 'card-flipped': (GObject.SignalFlags.RUN_FIRST,
+ None, [int, GObject.TYPE_PYOBJECT]),
'card-overflipped': (GObject.SignalFlags.RUN_FIRST, None, [int]),
- 'card-highlighted': (GObject.SignalFlags.RUN_FIRST, None, [int, object]),
+ 'card-highlighted': (GObject.SignalFlags.RUN_FIRST,
+ None, [int, GObject.TYPE_PYOBJECT]),
}
def __init__(self):