summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2018-03-22 17:30:09 +0100
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2018-03-23 08:26:44 +0100
commite97737fd667d74c759e7e44e9c5364b8c7cda0a9 (patch)
treec741324f2d20e22c46966ad8f8d83b77289e4d1e
parenta82cdccb0c276ec10c35beec46fa7fa25fc95cd5 (diff)
Typo: GetSelectEntryPosLBB -> GetSelectedEntryPosLBB
Change-Id: Id1706d11143ee60216322db1ac51207e658000e1 Reviewed-on: https://gerrit.libreoffice.org/51749 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
-rw-r--r--cui/source/tabpages/chardlg.cxx2
-rw-r--r--include/svx/langbox.hxx2
-rw-r--r--svx/source/dialog/langbox.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/tabpages/chardlg.cxx b/cui/source/tabpages/chardlg.cxx
index 7d59c2a68721..2ad91da8ac53 100644
--- a/cui/source/tabpages/chardlg.cxx
+++ b/cui/source/tabpages/chardlg.cxx
@@ -1121,7 +1121,7 @@ bool SvxCharNamePage::FillItemSet_Impl( SfxItemSet& rSet, LanguageGroup eLangGrp
}
}
- sal_Int32 nLangPos = pLangBox->GetSelectEntryPosLBB();
+ sal_Int32 nLangPos = pLangBox->GetSelectedEntryPosLBB();
LanguageType eLangType = LanguageType(reinterpret_cast<sal_uLong>(pLangBox->GetEntryDataLBB( nLangPos )));
if ( pOld )
diff --git a/include/svx/langbox.hxx b/include/svx/langbox.hxx
index a80589cdae15..af16b7faf914 100644
--- a/include/svx/langbox.hxx
+++ b/include/svx/langbox.hxx
@@ -86,7 +86,7 @@ public:
void HideLBB();
void DisableLBB();
void SaveValueLBB();
- sal_Int32 GetSelectEntryPosLBB() const;
+ sal_Int32 GetSelectedEntryPosLBB() const;
void* GetEntryDataLBB( sal_Int32 nPos ) const;
sal_Int32 GetSavedValueLBB() const;
diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx
index b64e6a9a1b7b..f69eaefa74f7 100644
--- a/svx/source/dialog/langbox.cxx
+++ b/svx/source/dialog/langbox.cxx
@@ -512,7 +512,7 @@ void SvxLanguageBoxBase::SaveValueLBB()
ImplSaveValue();
}
-sal_Int32 SvxLanguageBoxBase::GetSelectEntryPosLBB() const
+sal_Int32 SvxLanguageBoxBase::GetSelectedEntryPosLBB() const
{
return ImplGetSelectEntryPos();
}