summaryrefslogtreecommitdiff
path: root/formula
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-14 16:57:06 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-21 12:45:38 +0200
commitd99b65c864cc3358238e4eac651f12a34d05e2d9 (patch)
treefcd7d6fefb9434c27533c826aabc639f68ba97ed /formula
parentb649e5bf1d3f0a11fb0c2fdf6fa08329529ce6fb (diff)
Rename GetSelectEntryPos -> GetSelectedEntryPos
Change-Id: I0bd4cb463575af843c72d9c8aaf91742203532a4 Reviewed-on: https://gerrit.libreoffice.org/42283 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'formula')
-rw-r--r--formula/source/ui/dlg/funcpage.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/formula/source/ui/dlg/funcpage.cxx b/formula/source/ui/dlg/funcpage.cxx
index c77c9acebc3e..e7649d857d8a 100644
--- a/formula/source/ui/dlg/funcpage.cxx
+++ b/formula/source/ui/dlg/funcpage.cxx
@@ -121,7 +121,7 @@ void FuncPage::UpdateFunctionList(const OUString& aStr)
m_pLbFunction->Clear();
m_pLbFunction->SetUpdateMode( false );
- const sal_Int32 nSelPos = m_pLbCategory->GetSelectEntryPos();
+ const sal_Int32 nSelPos = m_pLbCategory->GetSelectedEntryPos();
if (aStr.isEmpty() || nSelPos == 0)
{
@@ -269,12 +269,12 @@ void FuncPage::SetFocus()
sal_Int32 FuncPage::GetCategory()
{
- return m_pLbCategory->GetSelectEntryPos();
+ return m_pLbCategory->GetSelectedEntryPos();
}
sal_Int32 FuncPage::GetFunction()
{
- return m_pLbFunction->GetSelectEntryPos();
+ return m_pLbFunction->GetSelectedEntryPos();
}
sal_Int32 FuncPage::GetFunctionEntryCount()