summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukasz Stanislawski <l.stanislaws@samsung.com>2015-11-25 14:02:25 +0100
committerLukasz Stanislawski <l.stanislaws@samsung.com>2015-11-26 09:07:09 +0100
commit75b3ce919c725cc394600683ef149302eb6db7c9 (patch)
tree84065b2202772facc84da1019f88e032d7c49244
parent9923e1dc0d3119b94725d3dee3fa17641c3292f9 (diff)
downloadelementary-75b3ce919c725cc394600683ef149302eb6db7c9.tar.gz
atspi: remove useless "GetDefaultAttributeSet" method
This method exists in atspi spec, however is not implemented in libatspi library. Drop it for now as it seems useless.
-rw-r--r--src/lib/elm_atspi_bridge.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/elm_atspi_bridge.c b/src/lib/elm_atspi_bridge.c
index 92ccd8a41..6b0872877 100644
--- a/src/lib/elm_atspi_bridge.c
+++ b/src/lib/elm_atspi_bridge.c
@@ -1832,7 +1832,6 @@ static const Eldbus_Method text_methods[] = {
{ "GetRangeExtents", ELDBUS_ARGS({"i", "startOffset"}, {"i", "endOffset"}, {"u", "coordType"}), ELDBUS_ARGS({"i", "x"}, {"i", "y"}, {"i","w"}, {"i","h"}), _text_range_extents_get, 0 },
{ "GetBoundedRanges", ELDBUS_ARGS({"i", "x"}, {"i", "y"}, {"i", "w"}, {"i", "h"}, {"u", "coordType"}, {"u", "xClipType"}, {"u", "yClipType"}), ELDBUS_ARGS({"a(issv)", NULL}), _text_bounded_ranges_get, 0 },
{ "GetAttributeRun", ELDBUS_ARGS({"i", "offset"}, {"b", "includeDefaults"}), ELDBUS_ARGS({"a(ss)", NULL}, {"i", "startOffset"}, {"i", "endOffset"}), _text_run_attributes_get, 0 },
- { "GetDefaultAttributeSet", NULL, ELDBUS_ARGS({"a(ss)", NULL}), _text_default_attributes_get, 0 },
{ NULL, NULL, NULL, NULL, 0 }
};