From 6352b303e58bac7ddaa0f7f7fa64de0b5da9d3d3 Mon Sep 17 00:00:00 2001 From: Padraig O'Briain Date: Mon, 3 Sep 2001 14:36:07 +0000 Subject: [PATCH] Correct property definitions for "accessible-table-caption", * atk/atkobject.c: Correct property definitions for "accessible-table-caption", "accessible-table-column-description", "accessible-table-row-description" * atk/atkobject.h: Update comments to include all properties defined --- ChangeLog | 9 +++++++++ atk/atkobject.c | 16 ++++++---------- atk/atkobject.h | 11 +++++++++++ 3 files changed, 26 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 87122fd..b706871 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2001-09-03 Padraig O'Briain + + * atk/atkobject.c: + Correct property definitions for "accessible-table-caption", + "accessible-table-column-description", + "accessible-table-row-description" + * atk/atkobject.h: + Update comments to include all properties defined + 2001-08-24 Padraig O'Briain * atk/atkhyperlink.h: diff --git a/atk/atkobject.c b/atk/atkobject.c index cf856f1..50114bc 100755 --- a/atk/atkobject.c +++ b/atk/atkobject.c @@ -275,10 +275,10 @@ atk_object_class_init (AtkObjectClass *klass) G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_TABLE_CAPTION, - g_param_spec_object (atk_object_name_property_table_caption, + g_param_spec_string (atk_object_name_property_table_caption, "Accessible Table Caption", "Is used to notify that the table caption has changed ", - ATK_TYPE_OBJECT, + NULL, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_TABLE_COLUMN_HEADER, @@ -289,12 +289,10 @@ atk_object_class_init (AtkObjectClass *klass) G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_TABLE_COLUMN_DESCRIPTION, - g_param_spec_int (atk_object_name_property_table_column_description, + g_param_spec_string (atk_object_name_property_table_column_description, "Accessible Table Column Description", "Is used to notify that the table columnscription has changed ", - 0, - G_MAXINT, - 0, + NULL, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_TABLE_ROW_HEADER, @@ -305,12 +303,10 @@ atk_object_class_init (AtkObjectClass *klass) G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_TABLE_ROW_DESCRIPTION, - g_param_spec_int (atk_object_name_property_table_row_description, + g_param_spec_string (atk_object_name_property_table_row_description, "Accessible Table Row Description", "Is used to notify that the table row description has changed ", - 0, - G_MAXINT, - 0, + NULL, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_TABLE_SUMMARY, diff --git a/atk/atkobject.h b/atk/atkobject.h index d021331..329767a 100755 --- a/atk/atkobject.h +++ b/atk/atkobject.h @@ -412,6 +412,17 @@ void atk_object_remove_property_change_handler (AtkObject * "accessible-child" * "accessible-role" * "accessible-state" + * "accessible-parent" + * "accessible-text" + * "accessible-caret" + * "accessible-selection" + * "accessible-value" + * "accessible-visible-data" + * "accessible-table-caption" + * "accessible-table-column-header" + * "accessible-table-row-heaer" + * "accessible-table-summary" + * "accessible-model" * * accessibility property change listeners should use the * normal GObject property interfaces and "properties_changed" -- 2.7.4