summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-15 12:59:55 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-15 12:59:55 +0100
commit35f5833ca35dc170b67ed9f8e288302eb06eb972 (patch)
treeb3271288a3d00510ec7007cfd68773426533bfe7
parent54d22957bc241fc5867fa1c720cf1266133e4e90 (diff)
loplugin:nullptr
Change-Id: Ie59472fb9c58561fad46dff08cfcdcb8a96e7032
-rw-r--r--sw/source/uibase/docvw/SidebarWin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/docvw/SidebarWin.cxx b/sw/source/uibase/docvw/SidebarWin.cxx
index 867cd2bf44cb..99f4c39ace14 100644
--- a/sw/source/uibase/docvw/SidebarWin.cxx
+++ b/sw/source/uibase/docvw/SidebarWin.cxx
@@ -565,8 +565,8 @@ void SwSidebarWin::InitControls()
{
// If there is a callback already registered, inform the new outliner view about it.
SwDrawModel* pDrawModel = mrView.GetWrtShellPtr()->getIDocumentDrawModelAccess().GetDrawModel();
- LibreOfficeKitCallback pCallback = 0;
- void* pData = 0;
+ LibreOfficeKitCallback pCallback = nullptr;
+ void* pData = nullptr;
pDrawModel->getLibreOfficeKitCallback(pCallback, pData);
mpOutlinerView->setTiledRendering(mrView.GetWrtShellPtr()->isTiledRendering());
mpOutlinerView->registerLibreOfficeKitCallback(pCallback, pData);