summaryrefslogtreecommitdiff
path: root/accessibility/inc
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/inc')
-rw-r--r--accessibility/inc/helper/IComboListBoxHelper.hxx2
-rw-r--r--accessibility/inc/helper/listboxhelper.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/accessibility/inc/helper/IComboListBoxHelper.hxx b/accessibility/inc/helper/IComboListBoxHelper.hxx
index 75bd598a85ba..c4b638b70acb 100644
--- a/accessibility/inc/helper/IComboListBoxHelper.hxx
+++ b/accessibility/inc/helper/IComboListBoxHelper.hxx
@@ -53,7 +53,7 @@ namespace accessibility
virtual sal_Int32 GetEntryCount() const = 0;
virtual void Select() = 0;
virtual void SelectEntryPos( sal_Int32 nPos, bool bSelect = true ) = 0;
- virtual sal_Int32 GetSelectEntryCount() const = 0;
+ virtual sal_Int32 GetSelectedEntryCount() const = 0;
virtual void SetNoSelection() = 0;
virtual sal_Int32 GetSelectedEntryPos( sal_Int32 nSelIndex ) const = 0;
virtual bool IsInDropDown() const = 0;
diff --git a/accessibility/inc/helper/listboxhelper.hxx b/accessibility/inc/helper/listboxhelper.hxx
index 0ef5d9f57509..ba6ad5c750ee 100644
--- a/accessibility/inc/helper/listboxhelper.hxx
+++ b/accessibility/inc/helper/listboxhelper.hxx
@@ -137,9 +137,9 @@ public:
m_aComboListBox.SelectEntryPos(nPos,bSelect);
}
- virtual sal_Int32 GetSelectEntryCount() const override
+ virtual sal_Int32 GetSelectedEntryCount() const override
{
- return m_aComboListBox.GetSelectEntryCount();
+ return m_aComboListBox.GetSelectedEntryCount();
}
virtual void SetNoSelection() override