From 0de6e9869d5ece36b2ed92980f33577c2d06843d Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Sat, 3 Dec 2011 16:25:08 +0100 Subject: [PATCH] ParamSpec: Add override modifier to the ToString method This remove a compilation warning. --- glib/ParamSpec.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/ParamSpec.cs b/glib/ParamSpec.cs index 74134eaf8..f75e99d78 100644 --- a/glib/ParamSpec.cs +++ b/glib/ParamSpec.cs @@ -116,7 +116,7 @@ namespace GLib { } } - public string ToString () + public override string ToString () { GParamSpec spec = (GParamSpec) Marshal.PtrToStructure (Handle, typeof (GParamSpec)); GType valtype= new GType (spec.value_type);