diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-21 15:11:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-21 15:11:07 +0200 |
commit | b5450f4afe2af6620fbbbdf686853dfa3293ff90 (patch) | |
tree | e62bb4ec5efd46865d4cc762ba5899cf7dc2a1b9 /sd/source/ui/dlg/headerfooterdlg.cxx | |
parent | 4ca17132933b4d791bada10451f93fb1d28bf3be (diff) |
More missing GetSelectEntryPos -> GetSelectedEntryPos
Change-Id: I89d1dfd2468691fce03a8525b3fa7209bf859293
Diffstat (limited to 'sd/source/ui/dlg/headerfooterdlg.cxx')
-rw-r--r-- | sd/source/ui/dlg/headerfooterdlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx b/sd/source/ui/dlg/headerfooterdlg.cxx index 2cc869c8e3ab..fb2a12e2d0a9 100644 --- a/sd/source/ui/dlg/headerfooterdlg.cxx +++ b/sd/source/ui/dlg/headerfooterdlg.cxx @@ -475,7 +475,7 @@ void HeaderFooterTabPage::dispose() IMPL_LINK_NOARG(HeaderFooterTabPage, LanguageChangeHdl, ListBox&, void) { - FillFormatList( mpCBDateTimeFormat->GetSelectEntryPos() ); + FillFormatList( mpCBDateTimeFormat->GetSelectedEntryPos() ); } void HeaderFooterTabPage::FillFormatList( sal_Int32 nSelectedPos ) @@ -547,7 +547,7 @@ void HeaderFooterTabPage::getData( HeaderFooterSettings& rSettings, bool& rNotOn if( mpCBDateTimeFormat->GetSelectEntryCount() == 1 ) { - sal_Int32 nPos = mpCBDateTimeFormat->GetSelectEntryPos(); + sal_Int32 nPos = mpCBDateTimeFormat->GetSelectedEntryPos(); rSettings.meDateFormat = nDateTimeFormats[nPos].meDateFormat; rSettings.meTimeFormat = nDateTimeFormats[nPos].meTimeFormat; } |