diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-20 11:45:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-20 11:45:15 +0200 |
commit | b8b83fca7d7959bb065f5e6442632a9541847ce4 (patch) | |
tree | cab462c80f64409c138e255c0dd08af8550254d5 | |
parent | 28ecf843463bafdb873cf28e32ba173b7fe466d8 (diff) |
loplugin:defaultparams
Change-Id: Ice8e3800bab22c08daefe41eae1be706f15c004c
-rw-r--r-- | drawinglayer/source/primitive2d/textlayoutdevice.cxx | 5 | ||||
-rw-r--r-- | drawinglayer/source/processor2d/vclprocessor2d.cxx | 3 |
2 files changed, 2 insertions, 6 deletions
diff --git a/drawinglayer/source/primitive2d/textlayoutdevice.cxx b/drawinglayer/source/primitive2d/textlayoutdevice.cxx index 39bd10c0a17c..4ba2fde54735 100644 --- a/drawinglayer/source/primitive2d/textlayoutdevice.cxx +++ b/drawinglayer/source/primitive2d/textlayoutdevice.cxx @@ -269,10 +269,7 @@ namespace drawinglayer rText, nIndex, nIndex, - nLength, - true, - 0, - 0); + nLength); } } diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx b/drawinglayer/source/processor2d/vclprocessor2d.cxx index 5116730ffd68..a63e7e9e921e 100644 --- a/drawinglayer/source/processor2d/vclprocessor2d.cxx +++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx @@ -1365,8 +1365,7 @@ namespace drawinglayer mpOutputDevice->DrawEPS( aRectangle.TopLeft(), aRectangle.GetSize(), - rEpsPrimitive2D.getGfxLink(), - 0); + rEpsPrimitive2D.getGfxLink()); if(!bEPSPaintedDirectly) { |