From 2c3cae3be8744018d09a25dfa9d292ef4bd11cda Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Fri, 14 Feb 2003 01:16:05 +0000 Subject: [PATCH] 2003-02-13 Mike Kestner * glib/Boxed.cs : fix a ctor bug reported to the list by u900842@oz.nthu.edu.tw. svn path=/trunk/gtk-sharp/; revision=11564 --- ChangeLog | 5 +++++ glib/Boxed.cs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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)