diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-03 23:08:58 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-03 23:27:40 +0200 |
commit | 8948dfdb693c7565a02f3fe1f235fb6c7d3ddc44 (patch) | |
tree | 333aa1d48084091563d9b7b62c807da8dfa07c9f /sfx2 | |
parent | 677b125ae3f14d823ebdddf04d22cf879a3cfd4f (diff) |
screen space is a valuable good, don't waste it
Change-Id: I67d47ef4030ce60d1cbc160a52cad7cc3c417b34
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index 4538ce425359..a2a7445aac4b 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -206,12 +206,12 @@ private: std::set < OString > m_aIds; public: - SfxHelpOptions_Impl(); - ~SfxHelpOptions_Impl(); + SfxHelpOptions_Impl(); + ~SfxHelpOptions_Impl(); - bool HasId( const OString& rId ) { return m_aIds.size() ? m_aIds.find( rId ) != m_aIds.end() : false; } - virtual void Notify( const com::sun::star::uno::Sequence< OUString >& aPropertyNames ); - virtual void Commit(); + bool HasId( const OString& rId ) { return m_aIds.size() ? m_aIds.find( rId ) != m_aIds.end() : false; } + virtual void Notify( const com::sun::star::uno::Sequence< OUString >& aPropertyNames ); + virtual void Commit(); }; static Sequence< OUString > GetPropertyNames() @@ -298,7 +298,7 @@ void SfxHelpOptions_Impl::Commit() class SfxHelp_Impl { private: - SfxHelpOptions_Impl* m_pOpt; // the options + SfxHelpOptions_Impl* m_pOpt; // the options public: SfxHelp_Impl(); @@ -309,9 +309,7 @@ public: }; SfxHelp_Impl::SfxHelp_Impl() : - - m_pOpt ( NULL ) - + m_pOpt ( NULL ) { } @@ -342,10 +340,8 @@ SfxHelpOptions_Impl* SfxHelp_Impl::GetOptions() } SfxHelp::SfxHelp() : - bIsDebug( sal_False ), pImp ( NULL ) - { // read the environment variable "HELP_DEBUG" // if it's set, you will see debug output on active help |