Kaydet (Commit) 4f4a4d7e authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:nullptr

Change-Id: Ieb8821ed16707afd26329cb84277c96dca66d5b7
üst f2842051
...@@ -132,7 +132,7 @@ const DeckDescriptor* ResourceManager::ImplGetDeckDescriptor(const OUString& rsD ...@@ -132,7 +132,7 @@ const DeckDescriptor* ResourceManager::ImplGetDeckDescriptor(const OUString& rsD
if (iDeck->msId.equals(rsDeckId)) if (iDeck->msId.equals(rsDeckId))
return &*iDeck; return &*iDeck;
} }
return NULL; return nullptr;
} }
const DeckDescriptor* ResourceManager::GetDeckDescriptor(const OUString& rsDeckId) const const DeckDescriptor* ResourceManager::GetDeckDescriptor(const OUString& rsDeckId) const
{ {
...@@ -153,7 +153,7 @@ const PanelDescriptor* ResourceManager::ImplGetPanelDescriptor(const OUString& r ...@@ -153,7 +153,7 @@ const PanelDescriptor* ResourceManager::ImplGetPanelDescriptor(const OUString& r
if (iPanel->msId.equals(rsPanelId)) if (iPanel->msId.equals(rsPanelId))
return &*iPanel; return &*iPanel;
} }
return NULL; return nullptr;
} }
const PanelDescriptor* ResourceManager::GetPanelDescriptor(const OUString& rsPanelId) const const PanelDescriptor* ResourceManager::GetPanelDescriptor(const OUString& rsPanelId) const
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment