From 450a0d7c5ebc1b1bc8ba9a0ab25bc5b7bdcb71e5 Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Mon, 9 Nov 2009 10:20:34 +0100 Subject: [PATCH] Plugin registrar: chain up to GLib.Object using new (vala 0.7.8) syntax --- src/plugin-registrar.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin-registrar.vala b/src/plugin-registrar.vala index 29eed01..69eccb7 100644 --- a/src/plugin-registrar.vala +++ b/src/plugin-registrar.vala @@ -28,8 +28,8 @@ public class PluginRegistrar : Object { assert (Module.supported ()); } - public PluginRegistrar (string path) { - this.path = path; + public PluginRegistrar (string _path) { + Object (path: _path); } public bool load () { -- 1.7.9.5