diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-23 09:57:02 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-23 13:30:53 +0200 |
commit | 980fe3f79102fdeb8d1b997668d9d5c2e1c7e690 (patch) | |
tree | a691cf6f0965aafb159c39e29f8103938d972d36 /sd/source/ui/view/drviews1.cxx | |
parent | 56a9594649872f4076b6891f917138d2b1e8d028 (diff) |
loplugin:unusedfields in sd/
Change-Id: Id6da990828ece02132032285116f3a20de423519
Diffstat (limited to 'sd/source/ui/view/drviews1.cxx')
-rw-r--r-- | sd/source/ui/view/drviews1.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/drviews1.cxx b/sd/source/ui/view/drviews1.cxx index a933808352d0..3f99ac9f727e 100644 --- a/sd/source/ui/view/drviews1.cxx +++ b/sd/source/ui/view/drviews1.cxx @@ -1259,7 +1259,7 @@ sal_Int8 DrawViewShell::AcceptDrop ( sal_Int8 DrawViewShell::ExecuteDrop ( const ExecuteDropEvent& rEvt, - DropTargetHelper& rTargetHelper, + DropTargetHelper& /*rTargetHelper*/, ::sd::Window* pTargetWindow, sal_uInt16 nPage, sal_uInt16 nLayer) @@ -1271,7 +1271,7 @@ sal_Int8 DrawViewShell::ExecuteDrop ( return DND_ACTION_NONE; Broadcast(ViewShellHint(ViewShellHint::HINT_COMPLEX_MODEL_CHANGE_START)); - sal_Int8 nResult (mpDrawView->ExecuteDrop( rEvt, rTargetHelper, pTargetWindow, nPage, nLayer )); + sal_Int8 nResult (mpDrawView->ExecuteDrop( rEvt, pTargetWindow, nPage, nLayer )); Broadcast(ViewShellHint(ViewShellHint::HINT_COMPLEX_MODEL_CHANGE_END)); return nResult; |