diff options
author | Padraig O'Briain <padraigo@src.gnome.org> | 2001-05-01 16:44:24 +0000 |
---|---|---|
committer | Padraig O'Briain <padraigo@src.gnome.org> | 2001-05-01 16:44:24 +0000 |
commit | 2f49d57220ced01105c8d5bf4c9022a5cff7283a (patch) | |
tree | ea2f1ea8dd082ba24d32a0d0724f0cd3c29f9657 /atk/atkrelation.h | |
parent | 2e4cfd2c72f2c962eb3a7ee4f002bfbbd0ca732c (diff) | |
download | atk-2f49d57220ced01105c8d5bf4c9022a5cff7283a.tar.gz |
Change to use GPtrArray instead GArray
Addess memory mangement issues.
Diffstat (limited to 'atk/atkrelation.h')
-rwxr-xr-x | atk/atkrelation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/atk/atkrelation.h b/atk/atkrelation.h index ea94817..ef24c44 100755 --- a/atk/atkrelation.h +++ b/atk/atkrelation.h @@ -53,7 +53,7 @@ struct _AtkRelation { GObject parent; - GArray *target; + GPtrArray *target; AtkRelationType relationship; }; @@ -80,7 +80,7 @@ AtkRelationType atk_relation_get_relation_type (AtkRelation *relation /* * Returns the target list of a relation. */ -GArray* atk_relation_get_target (AtkRelation *relation); +GPtrArray* atk_relation_get_target (AtkRelation *relation); #ifdef __cplusplus } |