VariantType: Fix typo
This commit is contained in:
parent
4158bc99f8
commit
c271fe235b
1 changed files with 2 additions and 2 deletions
|
@ -114,11 +114,11 @@ namespace GLib {
|
||||||
}
|
}
|
||||||
|
|
||||||
[DllImport (Global.GLibNativeDll, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport (Global.GLibNativeDll, CallingConvention = CallingConvention.Cdecl)]
|
||||||
static extern bool g_variant_type_equals (IntPtr a, IntPtr b);
|
static extern bool g_variant_type_equal (IntPtr a, IntPtr b);
|
||||||
|
|
||||||
public override bool Equals (object o)
|
public override bool Equals (object o)
|
||||||
{
|
{
|
||||||
return (o is VariantType) && g_variant_type_equals (Handle, (o as VariantType).Handle);
|
return (o is VariantType) && g_variant_type_equal (Handle, (o as VariantType).Handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
[DllImport (Global.GLibNativeDll, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport (Global.GLibNativeDll, CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
|
Loading…
Reference in a new issue