From 2e03809ce835ea15d1fe0d6e2851156c4094cdaa Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 25 Sep 2017 10:56:13 -0300 Subject: [PATCH] glib: Make GObject.NativeType public This is needed in GStreamer for the DynamicSignal part and is generaly useful. --- Source/glib/Object.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/glib/Object.cs b/Source/glib/Object.cs index 7adb3dc4b..34518b5a1 100644 --- a/Source/glib/Object.cs +++ b/Source/glib/Object.cs @@ -674,7 +674,7 @@ namespace GLib { get { return NativeType.ToString (); } } - internal GLib.GType NativeType { + public GLib.GType NativeType { get { return LookupGType (); } }