mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-22 20:25:35 +00:00
Use correct GType for GLib.InitiallyUnowned
It's not the same type as GLib.Object but a subclass thereof.
This commit is contained in:
parent
1b9fe6a8ed
commit
5b63473a1c
|
@ -27,9 +27,14 @@ namespace GLib {
|
|||
|
||||
protected InitiallyUnowned (IntPtr raw) : base (raw) {}
|
||||
|
||||
delegate IntPtr d_g_initially_unowned_get_type ();
|
||||
static d_g_initially_unowned_get_type g_initially_unowned_get_type = FuncLoader.LoadFunction<d_g_initially_unowned_get_type>(FuncLoader.GetProcAddress(GLibrary.Load(Library.GObject), "g_initially_unowned_get_type"));
|
||||
|
||||
public new static GLib.GType GType {
|
||||
get {
|
||||
return GType.Object;
|
||||
IntPtr raw_ret = g_initially_unowned_get_type();
|
||||
GLib.GType ret = new GLib.GType(raw_ret);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -711,8 +711,8 @@ namespace GLib {
|
|||
delegate float d_g_value_get_float(ref Value val);
|
||||
static d_g_value_get_float g_value_get_float = FuncLoader.LoadFunction<d_g_value_get_float>(FuncLoader.GetProcAddress(GLibrary.Load(Library.GObject), "g_value_get_float"));
|
||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_g_value_get_gtype(ref Value val);
|
||||
static d_g_value_get_type g_value_get_gtype = FuncLoader.LoadFunction<d_g_value_get_variant>(FuncLoader.GetProcAddress(GLibrary.Load(Library.GObject), "g_value_get_gtype"));
|
||||
delegate GLib.GType d_g_value_get_gtype(ref Value val);
|
||||
static d_g_value_get_gtype g_value_get_gtype = FuncLoader.LoadFunction<d_g_value_get_gtype>(FuncLoader.GetProcAddress(GLibrary.Load(Library.GObject), "g_value_get_gtype"));
|
||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
||||
delegate int d_g_value_get_int(ref Value val);
|
||||
static d_g_value_get_int g_value_get_int = FuncLoader.LoadFunction<d_g_value_get_int>(FuncLoader.GetProcAddress(GLibrary.Load(Library.GObject), "g_value_get_int"));
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
{
|
||||
public Buffer() : base(IntPtr.Zero)
|
||||
{
|
||||
owned = true;
|
||||
Raw = gtk_source_buffer_new(IntPtr.Zero);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue