summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/bibview.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:14:53 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:25 +0100
commitf19dda5a55156afda2c6dde6c51c455cc5657fc2 (patch)
treea0ec501f676cf5ec67aaf0eb3b8572dc1bad0db0 /extensions/source/bibliography/bibview.cxx
parente1e967a1bb0f4e4fac50f353c990389ccc73a053 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I5bbef6c88255f3e8c740a5239a5010cf1251b7fa
Diffstat (limited to 'extensions/source/bibliography/bibview.cxx')
-rw-r--r--extensions/source/bibliography/bibview.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/bibliography/bibview.cxx b/extensions/source/bibliography/bibview.cxx
index e497ee80f69a..88ac20693f62 100644
--- a/extensions/source/bibliography/bibview.cxx
+++ b/extensions/source/bibliography/bibview.cxx
@@ -51,7 +51,7 @@ namespace bib
:BibWindow( _pParent, _nStyle )
,m_pDatMan( _pManager )
,m_xDatMan( _pManager )
- ,m_pGeneralPage( NULL )
+ ,m_pGeneralPage( nullptr )
,m_aFormControlContainer(this)
{
if ( m_xDatMan.is() )
@@ -103,7 +103,7 @@ namespace bib
pGeneralPage->RemoveListeners();
pGeneralPage.disposeAndClear();
- m_xGeneralPage = NULL;
+ m_xGeneralPage = nullptr;
BibWindow::dispose();
}
@@ -118,7 +118,7 @@ namespace bib
m_pGeneralPage->Hide();
m_pGeneralPage->RemoveListeners();
m_pGeneralPage.disposeAndClear();
- m_xGeneralPage = 0;
+ m_xGeneralPage = nullptr;
}
m_pGeneralPage = VclPtr<BibGeneralPage>::Create( this, m_pDatMan );
@@ -155,7 +155,7 @@ namespace bib
}
if(bExecute)
{
- Application::PostUserEvent( LINK( this, BibView, CallMappingHdl ), NULL, true );
+ Application::PostUserEvent( LINK( this, BibView, CallMappingHdl ), nullptr, true );
}
}
}