diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-07-29 15:56:22 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-07-29 15:56:22 +0200 |
commit | a2f513dc69bcaeae435d2f79b198bec6661e38f7 (patch) | |
tree | 4ab6ad714252433856a90b7e8a7d2adc16bdd2d1 /sd | |
parent | 92ca89545deaa9d606349e82bc7d20a27d6581fe (diff) |
remove C++11-ism
Change-Id: Ife79bafda763f334af315f678e902e7249a562ab
Diffstat (limited to 'sd')
-rw-r--r-- | sd/inc/drawdoc.hxx | 2 | ||||
-rw-r--r-- | sd/source/core/drawdoc.cxx | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index cb0e758fcdca..f33cfdedaeb4 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 5fe97862b718..552e46dad8c6 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 ) |