[devhelp] gedit plugin: fix deprecated properties
- From: Sebastien Lafargue <slafargue src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [devhelp] gedit plugin: fix deprecated properties
- Date: Fri, 13 Mar 2015 21:15:45 +0000 (UTC)
commit 1c27d10669742946fe5dda99fd8f8d781e68f9e8
Author: Sebastien Lafargue <slafargue gnome org>
Date: Fri Mar 13 22:14:48 2015 +0100
gedit plugin: fix deprecated properties
misc/gedit-plugin/devhelp.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/misc/gedit-plugin/devhelp.py b/misc/gedit-plugin/devhelp.py
index 08f3c3c..870437b 100644
--- a/misc/gedit-plugin/devhelp.py
+++ b/misc/gedit-plugin/devhelp.py
@@ -27,7 +27,7 @@ import gettext
class DevhelpAppActivatable(GObject.Object, Gedit.AppActivatable):
- app = GObject.property(type=Gedit.App)
+ app = GObject.Property(type=Gedit.App)
def __init__(self):
GObject.Object.__init__(self)
@@ -48,7 +48,7 @@ class DevhelpAppActivatable(GObject.Object, Gedit.AppActivatable):
class DevhelpWindowActivatable(GObject.Object, Gedit.WindowActivatable):
- window = GObject.property(type=Gedit.Window)
+ window = GObject.Property(type=Gedit.Window)
def __init__(self):
GObject.Object.__init__(self)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]