From f4ed7690bff4021051f11fbe851b604d69caef2f Mon Sep 17 00:00:00 2001 From: mbkma Date: Fri, 12 Feb 2021 11:31:23 +0100 Subject: port plugins to use the window-construct property. pluma-file-browser-plugin.c: rename "data" to "priv". --- plugins/snippets/snippets/__init__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'plugins/snippets') diff --git a/plugins/snippets/snippets/__init__.py b/plugins/snippets/snippets/__init__.py index 9e7f717d..e5588018 100644 --- a/plugins/snippets/snippets/__init__.py +++ b/plugins/snippets/snippets/__init__.py @@ -23,10 +23,10 @@ from .Library import Library from .Manager import Manager from .comment import toggle_lines -class SnippetsPlugin(GObject.Object, Peas.Activatable): +class SnippetsPlugin(GObject.Object, Pluma.WindowActivatable): __gtype_name__ = "SnippetsPlugin" - object = GObject.Property(type=GObject.Object) + window = GObject.Property(type=Pluma.Window) def __init__(self): GObject.Object.__init__(self) @@ -59,8 +59,7 @@ class SnippetsPlugin(GObject.Object, Peas.Activatable): self._helper = WindowHelper(self) - window = self.object - self._helper.run(window) + self._helper.run(self.window) def do_deactivate(self): library = Library() -- cgit v1.2.1