Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/mmm_modules/image_category.py
diff options
context:
space:
mode:
Diffstat (limited to 'mmm_modules/image_category.py')
-rwxr-xr-xmmm_modules/image_category.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mmm_modules/image_category.py b/mmm_modules/image_category.py
index 92af2ee..30cc866 100755
--- a/mmm_modules/image_category.py
+++ b/mmm_modules/image_category.py
@@ -154,8 +154,8 @@ class CategoryDirectory (object):
class ImageSelectorWidget (Gtk.Table):
- __gsignals__ = {'category_press' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),
- 'image_press' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, ()),}
+ __gsignals__ = {'category_press' : (GObject.SIGNAL_RUN_LAST, GObject.TYPE_NONE, ()),
+ 'image_press' : (GObject.SIGNAL_RUN_LAST, GObject.TYPE_NONE, ()),}
def __init__ (self,parentp,
width=IMAGE_SIZE,
@@ -393,7 +393,7 @@ class ImageSelectorWidget (Gtk.Table):
self.image.set_from_pixbuf(self.category.get_image(obj.get('filename', None)))
class CategorySelector (Gtk.ScrolledWindow):
- __gsignals__ = {'selected' : (gobject.SIGNAL_RUN_LAST, gobject.TYPE_NONE, (str,))}
+ __gsignals__ = {'selected' : (GObject.SIGNAL_RUN_LAST, GObject.TYPE_NONE, (str,))}
def __init__ (self, title=None, selected_category_path=None, path=None, extra=()):
Gtk.ScrolledWindow.__init__ (self)