diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-20 16:05:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-20 16:05:28 +0100 |
commit | 4f4a4d7eb6438cb35a82545d59d01259ba79cc96 (patch) | |
tree | 584aa228ca9a64f0308177526e8012b03b3d83d7 /sfx2 | |
parent | f28420515c380de646db507be92312e26afaffcb (diff) |
loplugin:nullptr
Change-Id: Ieb8821ed16707afd26329cb84277c96dca66d5b7
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/sidebar/ResourceManager.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/sidebar/ResourceManager.cxx b/sfx2/source/sidebar/ResourceManager.cxx index b46b2573f107..1389c53a6d80 100644 --- a/sfx2/source/sidebar/ResourceManager.cxx +++ b/sfx2/source/sidebar/ResourceManager.cxx @@ -132,7 +132,7 @@ const DeckDescriptor* ResourceManager::ImplGetDeckDescriptor(const OUString& rsD if (iDeck->msId.equals(rsDeckId)) return &*iDeck; } - return NULL; + return nullptr; } const DeckDescriptor* ResourceManager::GetDeckDescriptor(const OUString& rsDeckId) const { @@ -153,7 +153,7 @@ const PanelDescriptor* ResourceManager::ImplGetPanelDescriptor(const OUString& r if (iPanel->msId.equals(rsPanelId)) return &*iPanel; } - return NULL; + return nullptr; } const PanelDescriptor* ResourceManager::GetPanelDescriptor(const OUString& rsPanelId) const { |