summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-18 18:15:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-18 18:15:03 +0100
commit57924b617e4b1b0428cf9b07204b3d5160aa7ea4 (patch)
treea75b554f318faefd65f067e0e6e1e57e190c1aca /sd
parente8642a0217654ea5723bbb768c5526349283d179 (diff)
loplugin:nullptr
Change-Id: I57ac7deb1c997adfa656aa0a3c9a1ae82b66cf15
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/framework/tools/FrameworkHelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/framework/tools/FrameworkHelper.cxx b/sd/source/ui/framework/tools/FrameworkHelper.cxx
index 585a82db1ff0..842df16b3aa2 100644
--- a/sd/source/ui/framework/tools/FrameworkHelper.cxx
+++ b/sd/source/ui/framework/tools/FrameworkHelper.cxx
@@ -605,7 +605,7 @@ void FrameworkHelper::HandleModeChangeSlot (
// and SlideSorterViewShell have no master mode
DrawViewShell* pDrawViewShell
= dynamic_cast<DrawViewShell*>(pCenterViewShell.get());
- if (pDrawViewShell != NULL)
+ if (pDrawViewShell != nullptr)
{
pCenterViewShell->Broadcast (
ViewShellHint(ViewShellHint::HINT_CHANGE_EDIT_MODE_START));