summaryrefslogtreecommitdiff
path: root/accessibility/inc
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-14 17:00:06 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-25 10:00:46 +0200
commit83de03e077d219c881626de43960ae4756284371 (patch)
tree2d582083e3c060139699b075565f55f872edb7b1 /accessibility/inc
parent4d5e9db574bdb1a7517ffda01efe0746cc058d47 (diff)
Rename GetSelectEntryCount -> GetSelectedEntryCount
Change-Id: I405b347b404ed0acb3b6a0204e0b914a7698ce25 Reviewed-on: https://gerrit.libreoffice.org/42284 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
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