[Libreoffice-commits] core.git: sd/source

Stephan Bergmann sbergman at redhat.com
Wed Nov 18 09:15:29 PST 2015


 sd/source/ui/framework/tools/FrameworkHelper.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 57924b617e4b1b0428cf9b07204b3d5160aa7ea4
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Nov 18 18:15:03 2015 +0100

    loplugin:nullptr
    
    Change-Id: I57ac7deb1c997adfa656aa0a3c9a1ae82b66cf15

diff --git a/sd/source/ui/framework/tools/FrameworkHelper.cxx b/sd/source/ui/framework/tools/FrameworkHelper.cxx
index 585a82d..842df16 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));


More information about the Libreoffice-commits mailing list