2009-05-12 Mike Kestner <mkestner@novell.com>

* glib/ValueArray.cs: make ctor(IntPtr) public for binding usage. 
	[Fixes #503189] Patch by Sebastian Dröge.

svn path=/trunk/gtk-sharp/; revision=134011
This commit is contained in:
Mike Kestner 2009-05-12 23:10:27 +00:00
parent bf6b4299e5
commit bb08d67c7a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-05-12 Mike Kestner <mkestner@novell.com>
* glib/ValueArray.cs: make ctor(IntPtr) public for binding usage.
[Fixes #503189] Patch by Sebastian Dröge.
2009-05-12 Mike Kestner <mkestner@novell.com>
* gtk/Application.cs: add the theme initialization workaround for

View File

@ -40,7 +40,7 @@ namespace GLib {
handle = g_value_array_new (n_preallocs);
}
internal ValueArray (IntPtr raw)
public ValueArray (IntPtr raw)
{
handle = raw;
}