diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-27 12:52:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-28 07:17:51 +0200 |
commit | b32ead5dd27c6f2b760e4196ebe0378fb8ec1a69 (patch) | |
tree | e647c37f069db3be229a4b89bc44fd21e64128fa /cppcanvas/source/inc | |
parent | 3956e4cb58033cae360beddf97136596ff3bb740 (diff) |
loplugin:checkunusedparams more part1
seems I got one of the checks wrong, and was missing a bunch of stuff
Change-Id: I2c662fc4e735f8d6cbe56c6f82906a60a580331b
Reviewed-on: https://gerrit.libreoffice.org/40481
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppcanvas/source/inc')
-rw-r--r-- | cppcanvas/source/inc/tools.hxx | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/cppcanvas/source/inc/tools.hxx b/cppcanvas/source/inc/tools.hxx index 63ee1dcf8a7f..80ded934203f 100644 --- a/cppcanvas/source/inc/tools.hxx +++ b/cppcanvas/source/inc/tools.hxx @@ -20,26 +20,16 @@ #ifndef INCLUDED_CPPCANVAS_SOURCE_INC_TOOLS_HXX #define INCLUDED_CPPCANVAS_SOURCE_INC_TOOLS_HXX -#include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Sequence.hxx> #include <cppcanvas/color.hxx> -namespace com { namespace sun { namespace star { namespace rendering -{ - class XGraphicDevice; -} } } } - - namespace cppcanvas { namespace tools { - css::uno::Sequence< double > - intSRGBAToDoubleSequence( const css::uno::Reference< css::rendering::XGraphicDevice >&, - Color::IntSRGBA ); + css::uno::Sequence< double > intSRGBAToDoubleSequence( Color::IntSRGBA ); - Color::IntSRGBA doubleSequenceToIntSRGBA( const css::uno::Reference< css::rendering::XGraphicDevice >& rDevice, - const css::uno::Sequence< double >& rColor ); + Color::IntSRGBA doubleSequenceToIntSRGBA( const css::uno::Sequence< double >& rColor ); } } |