diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-03 16:23:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-03 16:23:52 +0100 |
commit | dd7a2f9a980505acd87abfad4f14526228e8a124 (patch) | |
tree | 4c1dcbaac6deb67c686191b779c0f2374f369c62 /sd/source | |
parent | b0cda1b0b6245e43ad9721cf756ab2a6fdc01b38 (diff) |
loplugin:nullptr
Change-Id: I3c65591d2693b6aa8bb860bf00100dc28f01db0c
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/drviews2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/view/drviews2.cxx b/sd/source/ui/view/drviews2.cxx index bf7ecd0306fc..83ca6e9df904 100644 --- a/sd/source/ui/view/drviews2.cxx +++ b/sd/source/ui/view/drviews2.cxx @@ -1145,7 +1145,7 @@ void DrawViewShell::FuTemporary(SfxRequest& rReq) case SID_CLASSIFICATION_APPLY: { const SfxItemSet* pArgs = rReq.GetArgs(); - const SfxPoolItem* pItem = 0; + const SfxPoolItem* pItem = nullptr; if (pArgs && pArgs->GetItemState(nSId, false, &pItem) == SfxItemState::SET) { const OUString& rName = static_cast<const SfxStringItem*>(pItem)->GetValue(); |