diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-03 15:51:23 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-03 15:51:23 +0100 |
commit | 22b064a7859dbbf8e1f7988f95748bbbf0fb4c0c (patch) | |
tree | bebc3005674096e3237ef056789f7e85ad7c2d14 | |
parent | ebdb1b85b7ab75e36ca5efc2580497f779a9ee04 (diff) |
loplugin:nullptr
Change-Id: Ie50bf53a24d44a7f645f381a3d07710cc3986151
-rw-r--r-- | sc/source/ui/view/formatsh.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/formatsh.cxx b/sc/source/ui/view/formatsh.cxx index 8d7440bb4ae9..b4114b9ee38b 100644 --- a/sc/source/ui/view/formatsh.cxx +++ b/sc/source/ui/view/formatsh.cxx @@ -970,7 +970,7 @@ void ScFormatShell::ExecuteStyle( SfxRequest& rReq ) } else if (nSlotId == SID_CLASSIFICATION_APPLY) { - const SfxPoolItem* pItem = 0; + const SfxPoolItem* pItem = nullptr; if (pArgs && pArgs->GetItemState(nSlotId, false, &pItem) == SfxItemState::SET) { const OUString& rName = static_cast<const SfxStringItem*>(pItem)->GetValue(); |