diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:14:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:25 +0100 |
commit | f19dda5a55156afda2c6dde6c51c455cc5657fc2 (patch) | |
tree | a0ec501f676cf5ec67aaf0eb3b8572dc1bad0db0 /extensions/source/propctrlr/propcontroller.cxx | |
parent | e1e967a1bb0f4e4fac50f353c990389ccc73a053 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I5bbef6c88255f3e8c740a5239a5010cf1251b7fa
Diffstat (limited to 'extensions/source/propctrlr/propcontroller.cxx')
-rw-r--r-- | extensions/source/propctrlr/propcontroller.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/extensions/source/propctrlr/propcontroller.cxx b/extensions/source/propctrlr/propcontroller.cxx index 84d6ad45dc42..bcf766ebd61e 100644 --- a/extensions/source/propctrlr/propcontroller.cxx +++ b/extensions/source/propctrlr/propcontroller.cxx @@ -89,7 +89,7 @@ namespace pcr :m_xContext(_rxContext) ,m_aDisposeListeners( m_aMutex ) ,m_aControlObservers( m_aMutex ) - ,m_pView(NULL) + ,m_pView(nullptr) ,m_bContainerFocusListening( false ) ,m_bSuspendingPropertyHandlers( false ) ,m_bConstructed( false ) @@ -534,7 +534,7 @@ namespace pcr m_aControlObservers.disposeAndClear(aEvt); // don't delete explicitly (this is done by the frame we reside in) - m_pView = NULL; + m_pView = nullptr; Reference< XComponent > xViewAsComp( m_xView, UNO_QUERY ); if ( xViewAsComp.is() ) @@ -542,7 +542,7 @@ namespace pcr m_xView.clear( ); m_aInspectedObjects.clear(); - impl_bindToNewModel_nothrow( NULL ); + impl_bindToNewModel_nothrow( nullptr ); } @@ -620,8 +620,8 @@ namespace pcr { if ( m_xView.is() && ( m_xView == _rSource.Source ) ) { - m_xView = NULL; - m_pView = NULL; + m_xView = nullptr; + m_pView = nullptr; } for ( InterfaceArray::iterator loop = m_aInspectedObjects.begin(); @@ -1350,7 +1350,7 @@ namespace pcr { DBG_UNHANDLED_EXCEPTION(); } - m_xInteractiveHandler = NULL; + m_xInteractiveHandler = nullptr; } |