summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/presvish.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:23:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:38 +0100
commit92c697c0e3e4bde88424322875c993c161696b1e (patch)
treeea1be62a0cb8fd7f7e63dd03a52441cedd8e96eb /sd/source/ui/view/presvish.cxx
parent65464ed0985802edb96dbcbd1c3eed996f3778bd (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: If1b80da64ba575f07b31dce9bc0e34b7eb9f11a4
Diffstat (limited to 'sd/source/ui/view/presvish.cxx')
-rw-r--r--sd/source/ui/view/presvish.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/view/presvish.cxx b/sd/source/ui/view/presvish.cxx
index 7182979fb944..05cb11dcb176 100644
--- a/sd/source/ui/view/presvish.cxx
+++ b/sd/source/ui/view/presvish.cxx
@@ -96,7 +96,7 @@ void PresentationViewShell::FinishInitialization( FrameView* pFrameView )
// Use the frame view that comes form the view shell that initiated our
// creation.
- if (pFrameView != NULL)
+ if (pFrameView != nullptr)
{
GetFrameView()->Disconnect();
SetFrameView (pFrameView);
@@ -110,12 +110,12 @@ void PresentationViewShell::FinishInitialization( FrameView* pFrameView )
SvxRuler* PresentationViewShell::CreateHRuler(::sd::Window*, bool)
{
- return NULL;
+ return nullptr;
}
SvxRuler* PresentationViewShell::CreateVRuler(::sd::Window*)
{
- return NULL;
+ return nullptr;
}
void PresentationViewShell::Activate( bool bIsMDIActivate )