[Libreoffice-commits] core.git: sd/source

Stephan Bergmann sbergman at redhat.com
Thu Sep 21 13:11:41 UTC 2017


 sd/source/ui/dlg/headerfooterdlg.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b5450f4afe2af6620fbbbdf686853dfa3293ff90
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Sep 21 15:11:07 2017 +0200

    More missing GetSelectEntryPos -> GetSelectedEntryPos
    
    Change-Id: I89d1dfd2468691fce03a8525b3fa7209bf859293

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;
     }


More information about the Libreoffice-commits mailing list