diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-20 15:35:23 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-20 15:35:23 +0100 |
commit | 8e0ef3a3964ff6b43adfa173c2286e437f36f2bc (patch) | |
tree | 876865e59ad8d0357594a0352a5f3b90bc997eac /sfx2 | |
parent | c2ef6387de22d76537e44ec74bd13d718f915814 (diff) |
loplugin:nullptr
Change-Id: I12e145be9c9f19c51e86075298f616b003054e10
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/sidebar/SidebarController.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx index 9fcb82b66758..aad709fcf770 100644 --- a/sfx2/source/sidebar/SidebarController.cxx +++ b/sfx2/source/sidebar/SidebarController.cxx @@ -615,7 +615,7 @@ void SidebarController::CreatePanels(const ::rtl::OUString& rDeckId) // Depending on the context we have to change the command // for the "more options" dialog. PanelTitleBar* pTitleBar = aNewPanels[nWriteIndex]->GetTitleBar(); - if (pTitleBar != NULL) + if (pTitleBar != nullptr) { pTitleBar->SetMoreOptionsCommand( rPanelContexDescriptor.msMenuCommand, |