[gedit-plugins] joinlines: use Property instead of property



commit 4bbf69aec2bbceaef8ca493e3e800c51494f57f1
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Sat Mar 14 18:35:13 2015 +0100

    joinlines: use Property instead of property

 plugins/joinlines/joinlines.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/plugins/joinlines/joinlines.py b/plugins/joinlines/joinlines.py
index 175ee58..e7bffd0 100644
--- a/plugins/joinlines/joinlines.py
+++ b/plugins/joinlines/joinlines.py
@@ -31,7 +31,7 @@ except:
 
 
 class JoinLinesAppActivatable(GObject.Object, Gedit.AppActivatable):
-    app = GObject.property(type=Gedit.App)
+    app = GObject.Property(type=Gedit.App)
 
     def __init__(self):
         GObject.Object.__init__(self)
@@ -47,7 +47,7 @@ class JoinLinesAppActivatable(GObject.Object, Gedit.AppActivatable):
 
 class JoinLinesWindowActivatable(GObject.Object, Gedit.WindowActivatable):
 
-    window = GObject.property(type=Gedit.Window)
+    window = GObject.Property(type=Gedit.Window)
 
     def __init__(self):
         GObject.Object.__init__(self)
@@ -84,7 +84,7 @@ class JoinLinesWindowActivatable(GObject.Object, Gedit.WindowActivatable):
 
 class JoinLinesViewActivatable(GObject.Object, Gedit.ViewActivatable):
 
-    view = GObject.property(type=Gedit.View)
+    view = GObject.Property(type=Gedit.View)
 
     def __init__(self):
         GObject.Object.__init__(self)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]