diff options
Diffstat (limited to 'sw/source/uibase/utlui/glbltree.cxx')
-rw-r--r-- | sw/source/uibase/utlui/glbltree.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/uibase/utlui/glbltree.cxx b/sw/source/uibase/utlui/glbltree.cxx index 922b4fbc2059..7e044f64ad65 100644 --- a/sw/source/uibase/utlui/glbltree.cxx +++ b/sw/source/uibase/utlui/glbltree.cxx @@ -56,23 +56,23 @@ using namespace ::com::sun::star::uno; #define GLOBAL_UPDATE_TIMEOUT 2000 -const SfxObjectShell* SwGlobalTree::pShowShell = nullptr; +const SfxObjectShell* SwGlobalTree::s_pShowShell = nullptr; namespace { class SwGlobalFrameListener_Impl : public SfxListener { - bool bValid; + bool m_bValid; public: explicit SwGlobalFrameListener_Impl(SfxViewFrame& rFrame) - : bValid(true) + : m_bValid(true) { StartListening(rFrame); } virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override; - bool IsValid() const {return bValid;} + bool IsValid() const {return m_bValid;} }; } @@ -80,7 +80,7 @@ public: void SwGlobalFrameListener_Impl::Notify( SfxBroadcaster& /*rBC*/, const SfxHint& rHint ) { if( rHint.GetId() == SfxHintId::Dying) - bValid = false; + m_bValid = false; } namespace { @@ -997,7 +997,7 @@ SwNavigationPI* SwGlobalTree::GetParentWindow() IMPL_STATIC_LINK_NOARG(SwGlobalTree, ShowFrameHdl, void*, void) { - SfxViewFrame* pFirst = pShowShell ? SfxViewFrame::GetFirst(pShowShell) : nullptr; + SfxViewFrame* pFirst = s_pShowShell ? SfxViewFrame::GetFirst(s_pShowShell) : nullptr; if (pFirst) pFirst->ToTop(); SwGlobalTree::SetShowShell(nullptr); |