diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2018-02-14 21:14:52 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2018-02-15 13:28:49 -0500 |
commit | d17b8a23d975037170538aafbe9ace35aaaf17b0 (patch) | |
tree | 0a77ff16db51cf9dcf4988b440752bf5728102eb /src/tests | |
parent | 654656e69d1c2d1b04ad23416d6ea2ae752b48a4 (diff) | |
download | efl-d17b8a23d975037170538aafbe9ace35aaaf17b0.tar.gz |
Efl.Access.Text: resolve more name conflicts
text -> access_text
attributes -> text_attributes
selection -> access_selection
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/elementary/elm_test_entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/elementary/elm_test_entry.c b/src/tests/elementary/elm_test_entry.c index 05aa0d3464..1ca310a8e2 100644 --- a/src/tests/elementary/elm_test_entry.c +++ b/src/tests/elementary/elm_test_entry.c @@ -374,14 +374,14 @@ START_TEST (elm_entry_atspi_text_selections) elm_entry_select_region_set(entry, 2, 4); val = efl_access_text_selections_count_get(entry); ck_assert(val == 1); - efl_access_text_selection_get(entry, 0, &start, &end); + efl_access_text_access_selection_get(entry, 0, &start, &end); ck_assert(start == 2); ck_assert(end == 4); elm_entry_select_region_set(entry, 6, 10); val = efl_access_text_selections_count_get(entry); ck_assert(val == 1); - efl_access_text_selection_get(entry, 0, &start, &end); + efl_access_text_access_selection_get(entry, 0, &start, &end); ck_assert(start == 6); ck_assert(end == 10); |