From: Padraig O'Briain Date: Tue, 11 May 2004 08:03:41 +0000 (+0000) Subject: Make extra_roles static. X-Git-Tag: ATK_1_7_1~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d672c7b17482bb4fcb5d0dc61dc26268e1f69509;p=platform%2Fupstream%2Fatk.git Make extra_roles static. 2004-05-11 Padraig O'Briain * atk/atkobject.c: Make extra_roles static. * atk/atkrelation.c: Make extra_names static. Fixes bug #142234. * atk/atkstate.h: Add clarification of state ATK_STATE_ENABLED to documentation. --- diff --git a/ChangeLog b/ChangeLog index e62709a..9346e31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2004-05-11 Padraig O'Briain + + * atk/atkobject.c: Make extra_roles static. + + * atk/atkrelation.c: Make extra_names static. + + Fixes bug #142234. + + * atk/atkstate.h: Add clarification of state ATK_STATE_ENABLED to + documentation. + 2004-04-22 Padraig O'Briain * configure.in: Increment version to 1.7.1 and interface age to 1. diff --git a/atk/atkobject.c b/atk/atkobject.c index 9b6982c..1643125 100755 --- a/atk/atkobject.c +++ b/atk/atkobject.c @@ -34,7 +34,7 @@ #include "atk-enum-types.h" #include "atkintl.h" -GPtrArray *extra_roles = NULL; +static GPtrArray *extra_roles = NULL; enum { diff --git a/atk/atkrelation.c b/atk/atkrelation.c index 8c8cda2..6ed728e 100755 --- a/atk/atkrelation.c +++ b/atk/atkrelation.c @@ -31,7 +31,7 @@ enum { PROP_LAST }; -GPtrArray *extra_names = NULL; +static GPtrArray *extra_names = NULL; static gpointer parent_class = NULL; diff --git a/atk/atkstate.h b/atk/atkstate.h index 3950651..3b9957e 100755 --- a/atk/atkstate.h +++ b/atk/atkstate.h @@ -35,7 +35,7 @@ extern "C" { *@ATK_STATE_CHECKED: Indicates this object is currently checked *@ATK_STATE_DEFUNCT: Indicates the user interface object corresponding to this object no longer exists *@ATK_STATE_EDITABLE: Indicates the user can change the contents of this object - *@ATK_STATE_ENABLED: Indicates that this object is enabled + *@ATK_STATE_ENABLED: Indicates that this object is enabled. An inconsistent GtkToggleButton is an example of an object which is sensitive but not enabled. *@ATK_STATE_EXPANDABLE: Indicates this object allows progressive disclosure of its children *@ATK_STATE_EXPANDED: Indicates this object its expanded *@ATK_STATE_FOCUSABLE: Indicates this object can accept keyboard focus, which means all events resulting from typing on the keyboard will normally be passed to it when it has focus