summaryrefslogtreecommitdiff
path: root/accessibility
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-09-18 10:22:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-09-18 13:47:29 +0200
commitcb315646e2cecd9bc31806064ee285403ba5c46e (patch)
treefa0f71420dd97c6be9d9a3dfe6399c08d8298ca3 /accessibility
parentfba231b21b3d2403679e626f7a1b30aefde6879e (diff)
headString in SvTreeListBox is unused
ever since being added in commit b755fb8c0f6b1282f62c12f378c0a5ecac64d490 Date: Mon Nov 25 16:15:58 2013 +0000 Integrate branch of IAccessible2 Change-Id: Iebb8d30d53cc08e7cc35d610f04db8ed6c853b70
Diffstat (limited to 'accessibility')
-rw-r--r--accessibility/source/extended/accessiblelistboxentry.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/extended/accessiblelistboxentry.cxx b/accessibility/source/extended/accessiblelistboxentry.cxx
index bd996fded674..e9d579ee4b79 100644
--- a/accessibility/source/extended/accessiblelistboxentry.cxx
+++ b/accessibility/source/extended/accessiblelistboxentry.cxx
@@ -194,7 +194,7 @@ namespace accessibility
OUString sRet;
SvTreeListEntry* pEntry = getListBox()->GetEntryFromPath( m_aEntryPath );
if ( pEntry )
- sRet = getListBox()->SearchEntryTextWithHeadTitle( pEntry );
+ sRet = SvTreeListBox::SearchEntryTextWithHeadTitle( pEntry );
return sRet;
}
@@ -459,7 +459,7 @@ namespace accessibility
}
else
{
- return getListBox()->SearchEntryTextWithHeadTitle( pEntry );
+ return SvTreeListBox::SearchEntryTextWithHeadTitle( pEntry );
}
}