summaryrefslogtreecommitdiffstats
path: root/basebmp
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-20 11:54:11 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-21 14:29:49 +0000
commit41cde55f943ea43da1ac18987d30e33a0a551e1b (patch)
treec136d4c396134486aa909400917759d969d0c457 /basebmp
parentandroid: another part where underline and strikethrough commands were swapped (diff)
downloadcore-41cde55f943ea43da1ac18987d30e33a0a551e1b.tar.gz
core-41cde55f943ea43da1ac18987d30e33a0a551e1b.zip
loplugin:unusedfields in basebmp
Change-Id: I1a5da92deef152ef298e2036dbb2fbb65a5e3e7a Reviewed-on: https://gerrit.libreoffice.org/20076 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basebmp')
-rw-r--r--basebmp/inc/genericcolorimageaccessor.hxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/basebmp/inc/genericcolorimageaccessor.hxx b/basebmp/inc/genericcolorimageaccessor.hxx
index 346da7cd6b88..04e7f97c3a0a 100644
--- a/basebmp/inc/genericcolorimageaccessor.hxx
+++ b/basebmp/inc/genericcolorimageaccessor.hxx
@@ -33,20 +33,12 @@ namespace basebmp
class GenericColorImageAccessor
{
BitmapDeviceSharedPtr mpDevice;
- DrawMode meDrawMode;
public:
typedef Color value_type;
explicit GenericColorImageAccessor( BitmapDeviceSharedPtr const& rTarget ) :
- mpDevice(rTarget),
- meDrawMode(DrawMode::Paint)
- {}
-
- GenericColorImageAccessor( BitmapDeviceSharedPtr const& rTarget,
- DrawMode eDrawMode ) :
- mpDevice(rTarget),
- meDrawMode(eDrawMode)
+ mpDevice(rTarget)
{}
template< typename Iterator >