Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/properties.py
diff options
context:
space:
mode:
Diffstat (limited to 'tutorius/properties.py')
-rw-r--r--tutorius/properties.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tutorius/properties.py b/tutorius/properties.py
index 68e6091..b9e6267 100644
--- a/tutorius/properties.py
+++ b/tutorius/properties.py
@@ -331,14 +331,14 @@ class TAddonProperty(TutoriusProperty):
return super(TAddonProperty, self).validate(value)
raise ValueError("Expected TPropContainer instance as TaddonProperty value")
-class TGtkSignal(TutoriusProperty):
+class TEventType(TutoriusProperty):
"""
- Represents a gobject signal for a GTK widget.
+ Represents an GUI signal for a widget.
"""
def __init__(self, value):
- TutoriusProperty.__init__(self)
+ super(TEventType, self).__init__()
self.type = "gtk-signal"
-
+
self.default = self.validate(value)
class TAddonListProperty(TutoriusProperty):