Updated ChangeLog, applied patch from Anders Carlsson to fix finalize.
authorbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Mon, 30 Jul 2001 14:23:00 +0000 (14:23 +0000)
committerbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Mon, 30 Jul 2001 14:23:00 +0000 (14:23 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@12 e2bd861d-eb25-0410-b326-f6ed22b6b98c

ChangeLog
libspi/accessible.c

index b0d4e06..d118824 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+2001-07-28  Anders Carlsson  <andersca@gnome.org>
+
+       * libspi/accessible.c (accessible_object_finalize): Change
+       g_free to g_object_unref since the AtkObject is a GObject.
+
+2001-07-30  Bill Haneman <bill.haneman@sun.com>
+
+       * idl/Accessibility.idl: add new IDL files
+       
+       Added:
+       * idl/Action.idl: Definitions of actionable UI object
+       * idl/Component.idl: Definitions of UI component geometry, etc.
+       * idl/Hyperlink.idl: Defs of hyperlink behavior
+       * idl/Image.idl: Def of accessible image
+       * idl/Selection.idl: Definition of UI object with selectable children
+       * idl/StreamableContent.idl: Definition of UI object with streamable backing data
+       * idl/Table.idl: Definitions for access to table ('spreadsheet') elements
+       * idl/Text.idl: Interface defs for UI elements with complex textual content
+       * idl/Value.idl: Definition of UI element that is a value controller or display
+       
 2001-07-27  Michael Meeks  <michael@ximian.com>
 
        * po/Makefile.in.in: remove autogenerated file from CVS.
index 7d6c2c5..4828d51 100644 (file)
@@ -58,7 +58,7 @@ accessible_object_finalize (GObject *object)
         Accessible *accessible = ACCESSIBLE (object);
 
         printf("accessible_object_finalize called\n");
-        g_free (accessible->atko);
+        g_object_unref (accessible->atko);
 
         printf("atko freed, calling parent finalize\n");
         accessible_parent_class->finalize (object);