[gnome-builder] make: Add get_id implementation



commit 0f5e8c851f9b1b62e10b4d5fcf30fb26ca8d5e93
Author: Matthew Leeds <mleeds redhat com>
Date:   Wed Mar 29 18:37:01 2017 -0500

    make: Add get_id implementation

 plugins/make/make_plugin/__init__.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/plugins/make/make_plugin/__init__.py b/plugins/make/make_plugin/__init__.py
index dc4c200..133911f 100644
--- a/plugins/make/make_plugin/__init__.py
+++ b/plugins/make/make_plugin/__init__.py
@@ -31,6 +31,9 @@ class MakeBuildSystem(Ide.Object, Ide.BuildSystem, Gio.AsyncInitable):
     project_file = GObject.Property(type=Gio.File)
     make_dir = GObject.Property(type=Gio.File)
 
+    def do_get_id(self):
+        return 'make'
+
     def do_init_async(self, priority, cancel, callback, data=None):
         task = Gio.Task.new(self, cancel, callback)
         task.set_priority(priority)


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