[gedit-plugins] synctex: use Property instead of deprecated property



commit b34a3837f1bc0b96f3b062b6b4b8853286e89619
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Sat Mar 14 18:42:33 2015 +0100

    synctex: use Property instead of deprecated property

 plugins/synctex/synctex/synctex.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/plugins/synctex/synctex/synctex.py b/plugins/synctex/synctex/synctex.py
index 490baae..21c327b 100644
--- a/plugins/synctex/synctex/synctex.py
+++ b/plugins/synctex/synctex/synctex.py
@@ -222,7 +222,7 @@ class SynctexViewHelper:
 class SynctexWindowActivatable(GObject.Object, Gedit.WindowActivatable):
     __gtype_name__ = "SynctexWindowActivatable"
 
-    window = GObject.property(type=Gedit.Window)
+    window = GObject.Property(type=Gedit.Window)
     view_dict = {}
     _proxy_dict = {}
 
@@ -324,7 +324,7 @@ class SynctexWindowActivatable(GObject.Object, Gedit.WindowActivatable):
 
 class SynctexAppActivatable(GObject.Object, Gedit.AppActivatable):
 
-    app = GObject.property(type=Gedit.App)
+    app = GObject.Property(type=Gedit.App)
 
     def __init__(self):
         GObject.Object.__init__(self)


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