2003-02-13 Mike Kestner <mkestner@speakeasy.net>

* glib/Boxed.cs : fix a ctor bug reported to the list by
	u900842@oz.nthu.edu.tw.

svn path=/trunk/gtk-sharp/; revision=11564
This commit is contained in:
Mike Kestner 2003-02-14 01:16:05 +00:00
parent b568293a66
commit 2c3cae3be8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-02-13 Mike Kestner <mkestner@speakeasy.net>
* glib/Boxed.cs : fix a ctor bug reported to the list by
u900842@oz.nthu.edu.tw.
2003-02-13 Mike Kestner <mkestner@speakeasy.net>
* sample/Makefile.in: add a distclean target

View File

@ -30,7 +30,7 @@ namespace GLib {
public Boxed (object o)
{
this.obj = obj;
this.obj = o;
}
public Boxed (IntPtr ptr)