mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-07-07 16:30:38 +00:00
2008-03-12 Mike Kestner <mkestner@novell.com>
* glib/GType.cs: add an Init method for explicit initialization. svn path=/trunk/gtk-sharp/; revision=98056
This commit is contained in:
parent
708907e311
commit
51292d20b3
|
@ -1,3 +1,7 @@
|
||||||
|
2008-03-12 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* glib/GType.cs: add an Init method for explicit initialization.
|
||||||
|
|
||||||
2008-03-04 Mike Kestner <mkestner@novell.com>
|
2008-03-04 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* bootstrap-2.12: update version to 2.12 and tag
|
* bootstrap-2.12: update version to 2.12 and tag
|
||||||
|
|
|
@ -138,6 +138,11 @@ namespace GLib {
|
||||||
return LookupType (gtype.Val);
|
return LookupType (gtype.Val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void Init ()
|
||||||
|
{
|
||||||
|
// cctor already calls g_type_init.
|
||||||
|
}
|
||||||
|
|
||||||
public static Type LookupType (IntPtr typeid)
|
public static Type LookupType (IntPtr typeid)
|
||||||
{
|
{
|
||||||
if (types.Contains (typeid))
|
if (types.Contains (typeid))
|
||||||
|
|
Loading…
Reference in a new issue