2003-10-07 Mike Kestner <mkestner@ximian.com>
* glib/ListBase.cs : assume ref_owned=false for GObject lists. [Fixes #49145] svn path=/trunk/gtk-sharp/; revision=18710
This commit is contained in:
parent
0ea6f12c9e
commit
9eeca84abe
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-10-07 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* glib/ListBase.cs : assume ref_owned=false for GObject lists.
|
||||
[Fixes #49145]
|
||||
|
||||
2003-10-07 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* gtkhtml/Makefile.in : add art-sharp ref
|
||||
|
|
|
@ -151,7 +151,7 @@ namespace GLib {
|
|||
ret = Activator.CreateInstance (list.element_type, new object[] {data});
|
||||
}
|
||||
else if (Object.IsObject (data))
|
||||
ret = GLib.Object.GetObject (data, true);
|
||||
ret = GLib.Object.GetObject (data, false);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue