summaryrefslogtreecommitdiff
path: root/sw/source/ui/config
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-14 16:50:25 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-09-21 12:44:00 +0200
commitb649e5bf1d3f0a11fb0c2fdf6fa08329529ce6fb (patch)
treebd6937a0ece320c9545774dd5c9a68c68d04769e /sw/source/ui/config
parent06ce312f79cb0871c0b110ba4bff16f5aaa0f538 (diff)
Rename GetSelectEntry -> GetSelectedEntry
Change-Id: Ibb7d8c59c0e61b0e87455bd78f241d8691dd9dce Reviewed-on: https://gerrit.libreoffice.org/42282 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'sw/source/ui/config')
-rw-r--r--sw/source/ui/config/optload.cxx2
-rw-r--r--sw/source/ui/config/optpage.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/config/optload.cxx b/sw/source/ui/config/optload.cxx
index 731d9d2f25cd..7d4af067ef98 100644
--- a/sw/source/ui/config/optload.cxx
+++ b/sw/source/ui/config/optload.cxx
@@ -828,7 +828,7 @@ void SwCaptionOptPage::SaveEntry(SvTreeListEntry const * pEntry)
if(!m_pCharStyleLB->GetSelectEntryPos())
pOpt->SetCharacterStyle("");
else
- pOpt->SetCharacterStyle(m_pCharStyleLB->GetSelectEntry());
+ pOpt->SetCharacterStyle(m_pCharStyleLB->GetSelectedEntry());
pOpt->CopyAttributes() = m_pApplyBorderCB->IsChecked();
}
}
diff --git a/sw/source/ui/config/optpage.cxx b/sw/source/ui/config/optpage.cxx
index cfbe7cfcf538..c51a3f6905ba 100644
--- a/sw/source/ui/config/optpage.cxx
+++ b/sw/source/ui/config/optpage.cxx
@@ -444,7 +444,7 @@ bool SwAddPrinterTabPage::FillItemSet( SfxItemSet* rCoreSet )
if (m_pInMarginsRB->IsChecked()) aAddPrinterAttr.m_nPrintPostIts =
SwPostItMode::InMargins;
- const OUString sFax = m_pFaxLB->GetSelectEntry();
+ const OUString sFax = m_pFaxLB->GetSelectedEntry();
aAddPrinterAttr.m_sFaxName = sNone == sFax ? aEmptyOUStr : sFax;
rCoreSet->Put(aAddPrinterAttr);
}