summaryrefslogtreecommitdiff
path: root/sd/source/ui/sidebar/PanelBase.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/sidebar/PanelBase.cxx
parent65464ed0985802edb96dbcbd1c3eed996f3778bd (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: If1b80da64ba575f07b31dce9bc0e34b7eb9f11a4
Diffstat (limited to 'sd/source/ui/sidebar/PanelBase.cxx')
-rw-r--r--sd/source/ui/sidebar/PanelBase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/sidebar/PanelBase.cxx b/sd/source/ui/sidebar/PanelBase.cxx
index 3aaa0b2cd90f..c96f5fbab376 100644
--- a/sd/source/ui/sidebar/PanelBase.cxx
+++ b/sd/source/ui/sidebar/PanelBase.cxx
@@ -25,7 +25,7 @@ PanelBase::PanelBase (
vcl::Window* pParentWindow,
ViewShellBase& rViewShellBase)
: Control(pParentWindow),
- mpWrappedControl(NULL),
+ mpWrappedControl(nullptr),
mxSidebar(),
mrViewShellBase(rViewShellBase)
{
@@ -75,7 +75,7 @@ bool PanelBase::ProvideWrappedControl()
if (mxSidebar.is())
mxSidebar->requestLayout();
}
- return mpWrappedControl.get() != NULL;
+ return mpWrappedControl.get() != nullptr;
}
ISidebarReceiver::~ISidebarReceiver()