diff --git a/ChangeLog b/ChangeLog index b0121d691..d094d9043 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-02-13 Mike Kestner + + * glib/Boxed.cs : fix a ctor bug reported to the list by + u900842@oz.nthu.edu.tw. + 2003-02-13 Mike Kestner * sample/Makefile.in: add a distclean target diff --git a/glib/Boxed.cs b/glib/Boxed.cs index 1ab149a71..b7663696b 100644 --- a/glib/Boxed.cs +++ b/glib/Boxed.cs @@ -30,7 +30,7 @@ namespace GLib { public Boxed (object o) { - this.obj = obj; + this.obj = o; } public Boxed (IntPtr ptr)