summaryrefslogtreecommitdiff
path: root/svx/source/inc/fmexch.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-04 10:11:14 +0200
committerNoel Grandin <noel@peralex.com>2016-03-04 11:48:04 +0200
commit1fbc20dad2520862f8142f1cabae169bf1450b87 (patch)
treee27544a940a1d37031224db3b56b7fa88f836c3d /svx/source/inc/fmexch.hxx
parent9cc8a26fcdd4dbf7d5d65869bf84b824339751ce (diff)
loplugin:unuseddefaultparam in svx
Change-Id: Iacd4ed12c6c5dfdc2f31f85c8c1ce2cee8a8641f
Diffstat (limited to 'svx/source/inc/fmexch.hxx')
-rw-r--r--svx/source/inc/fmexch.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/inc/fmexch.hxx b/svx/source/inc/fmexch.hxx
index 6bdad805813d..182d5a7a85c2 100644
--- a/svx/source/inc/fmexch.hxx
+++ b/svx/source/inc/fmexch.hxx
@@ -81,9 +81,9 @@ namespace svxform
virtual bool GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& rDestDoc ) override;
private:
- void StartDrag( vcl::Window* pWindow, sal_Int8 nDragSourceActions, sal_Int32 nDragPointer = DND_POINTER_NONE, sal_Int32 nDragImage = DND_IMAGE_NONE )
+ void StartDrag( vcl::Window* pWindow, sal_Int8 nDragSourceActions, sal_Int32 nDragPointer = DND_POINTER_NONE )
{ // don't allow this base class method to be called from outside
- TransferableHelper::StartDrag(pWindow, nDragSourceActions, nDragPointer, nDragImage);
+ TransferableHelper::StartDrag(pWindow, nDragSourceActions, nDragPointer);
}
};