After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 727313 - a11y: do not use deprecated a11y functions.
a11y: do not use deprecated a11y functions.
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Accessibility
3.12.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2014-03-29 20:56 UTC by Jonas Danielsson
Modified: 2014-04-02 09:54 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
a11y: atk_component_get_position is deprecated (4.63 KB, patch)
2014-03-29 20:56 UTC, Jonas Danielsson
committed Details | Review
a11y: atk_table_get_row_at_index is deprecated (1009 bytes, patch)
2014-03-29 20:56 UTC, Jonas Danielsson
committed Details | Review

Description Jonas Danielsson 2014-03-29 20:56:03 UTC
The function atk_component_get_position has been deprecated in favor of atk_component_get_extents and the index based functions of atk_table has been deprecated.

The code in gtk/a11y could be fixed up to avoid these deprecated functions.
Comment 1 Jonas Danielsson 2014-03-29 20:56:32 UTC
Created attachment 273246 [details] [review]
a11y: atk_component_get_position is deprecated

Switch to using atk_component_get_extents instead.
Comment 2 Jonas Danielsson 2014-03-29 20:56:35 UTC
Created attachment 273247 [details] [review]
a11y: atk_table_get_row_at_index is deprecated

Do not use deprecated index based AtkTable functions use static
helper instead.
Comment 3 Matthias Clasen 2014-04-02 09:54:41 UTC
Attachment 273246 [details] pushed as e7962f5 - a11y: atk_component_get_position is deprecated
Attachment 273247 [details] pushed as b29bbc6 - a11y: atk_table_get_row_at_index is deprecated