[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sd/inc sd/source

Luboš Luňák l.lunak at suse.cz
Wed Aug 14 03:15:20 PDT 2013


 sd/inc/drawdoc.hxx         |    2 +-
 sd/source/core/drawdoc.cxx |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 35222169be2e7b37384c9165b21dba29115ea504
Author: Luboš Luňák <l.lunak at suse.cz>
Date:   Mon Jul 29 15:56:22 2013 +0200

    remove C++11-ism
    
    Change-Id: Ife79bafda763f334af315f678e902e7249a562ab

diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx
index cb0e758..f33cfde 100644
--- a/sd/inc/drawdoc.hxx
+++ b/sd/inc/drawdoc.hxx
@@ -164,7 +164,7 @@ private:
     sal_Bool                mbOnlineSpell;
     sal_Bool                mbSummationOfParagraphs;
     bool                mbStartWithPresentation;        ///< is set to true when starting with command line parameter -start
-    bool                mbExitAfterPresenting = false;         ///< true if mbStartWithPresentation AND Presentation was shown fully
+    bool                mbExitAfterPresenting;         ///< true if mbStartWithPresentation AND Presentation was shown fully
     LanguageType        meLanguage;
     LanguageType        meLanguageCJK;
     LanguageType        meLanguageCTL;
diff --git a/sd/source/core/drawdoc.cxx b/sd/source/core/drawdoc.cxx
index 07dda03..2dd69a9 100644
--- a/sd/source/core/drawdoc.cxx
+++ b/sd/source/core/drawdoc.cxx
@@ -152,6 +152,7 @@ SdDrawDocument::SdDrawDocument(DocumentType eType, SfxObjectShell* pDrDocSh)
 , mbInitialOnlineSpellingEnabled(sal_True)
 , mbNewOrLoadCompleted(sal_False)
 , mbStartWithPresentation( false )
+, mbExitAfterPresenting( false )
 , meLanguage( LANGUAGE_SYSTEM )
 , meLanguageCJK( LANGUAGE_SYSTEM )
 , meLanguageCTL( LANGUAGE_SYSTEM )


More information about the Libreoffice-commits mailing list