ParamSpec: Add override modifier to the ToString method
This remove a compilation warning.
This commit is contained in:
parent
d239b5cc4e
commit
0de6e9869d
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ namespace GLib {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public string ToString ()
|
public override string ToString ()
|
||||||
{
|
{
|
||||||
GParamSpec spec = (GParamSpec) Marshal.PtrToStructure (Handle, typeof (GParamSpec));
|
GParamSpec spec = (GParamSpec) Marshal.PtrToStructure (Handle, typeof (GParamSpec));
|
||||||
GType valtype= new GType (spec.value_type);
|
GType valtype= new GType (spec.value_type);
|
||||||
|
|
Loading…
Reference in a new issue