* glib/GType.cs (cctor): call g_type_init(). (Avoids debug spew
when monodocer updates doc/en/GLib/GType.xml.) svn path=/trunk/gtk-sharp/; revision=45500
This commit is contained in:
parent
25e70f2a38
commit
5743ba2da8
2 changed files with 8 additions and 0 deletions
|
@ -6,6 +6,9 @@
|
||||||
|
|
||||||
* gdk/Gdk.metadata: fix return type of Gdk.PangoRenderer.GetDefault
|
* gdk/Gdk.metadata: fix return type of Gdk.PangoRenderer.GetDefault
|
||||||
|
|
||||||
|
* glib/GType.cs (cctor): call g_type_init(). (Avoids debug spew
|
||||||
|
when monodocer updates doc/en/GLib/GType.xml.)
|
||||||
|
|
||||||
2005-06-02 Mike Kestner <mkestner@novell.com>
|
2005-06-02 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* gtk/gtk-api-2.6.raw : regen.
|
* gtk/gtk-api-2.6.raw : regen.
|
||||||
|
|
|
@ -67,8 +67,13 @@ namespace GLib {
|
||||||
gtypes[type] = native_type;
|
gtypes[type] = native_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
|
static extern void g_type_init ();
|
||||||
|
|
||||||
static GType ()
|
static GType ()
|
||||||
{
|
{
|
||||||
|
g_type_init ();
|
||||||
|
|
||||||
Register (GType.Char, typeof (sbyte));
|
Register (GType.Char, typeof (sbyte));
|
||||||
Register (GType.UChar, typeof (byte));
|
Register (GType.UChar, typeof (byte));
|
||||||
Register (GType.Boolean, typeof (bool));
|
Register (GType.Boolean, typeof (bool));
|
||||||
|
|
Loading…
Add table
Reference in a new issue