diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-04 08:13:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-04 08:15:08 +0200 |
commit | f1cef09fcda11e321f8b01ab4600c28339dec45a (patch) | |
tree | bc71552f9c3111aab5cc8a49d53c51c2a6907182 /vcl | |
parent | 0cc53919440f150f4bfedb7a5b88cdb0cf3317dc (diff) |
loplugin:casttovoid
...cases that were initially missed due to the broken
containsProcessingConditionalInclusion()
Change-Id: Ib7d801ab5173ee590ef35a9e075d3ce4d4aa06da
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/generic/gdi/gdiimpl.cxx | 11 | ||||
-rw-r--r-- | vcl/unx/gtk3/gtk3gtkframe.cxx | 3 |
2 files changed, 6 insertions, 8 deletions
diff --git a/vcl/unx/generic/gdi/gdiimpl.cxx b/vcl/unx/generic/gdi/gdiimpl.cxx index 421bab8dcc61..f218ef2d95c7 100644 --- a/vcl/unx/generic/gdi/gdiimpl.cxx +++ b/vcl/unx/generic/gdi/gdiimpl.cxx @@ -910,14 +910,13 @@ bool X11SalGraphicsImpl::drawAlphaBitmap( const SalTwoRect& rTR, } bool X11SalGraphicsImpl::drawTransformedBitmap( - const basegfx::B2DPoint& rNull, - const basegfx::B2DPoint& rX, - const basegfx::B2DPoint& rY, - const SalBitmap& rSourceBitmap, - const SalBitmap* pAlphaBitmap) + const basegfx::B2DPoint&, + const basegfx::B2DPoint&, + const basegfx::B2DPoint&, + const SalBitmap&, + const SalBitmap*) { // here direct support for transformed bitmaps can be implemented - (void)rNull; (void)rX; (void)rY; (void)rSourceBitmap; (void)pAlphaBitmap; return false; } diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx index 5236ee407f04..a5d05e40bc21 100644 --- a/vcl/unx/gtk3/gtk3gtkframe.cxx +++ b/vcl/unx/gtk3/gtk3gtkframe.cxx @@ -2396,9 +2396,8 @@ void GtkSalFrame::SetParent( SalFrame* pNewParent ) ); } -bool GtkSalFrame::SetPluginParent( SystemParentData* pSysParent ) +bool GtkSalFrame::SetPluginParent( SystemParentData* ) { - (void)pSysParent; //FIXME: no SetPluginParent impl. for gtk3 return false; } |