diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-20 11:54:11 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-21 14:29:49 +0000 |
commit | 41cde55f943ea43da1ac18987d30e33a0a551e1b (patch) | |
tree | c136d4c396134486aa909400917759d969d0c457 /basebmp | |
parent | 6f5589d5ed1e42512a04658ce57f1088b1fc1757 (diff) |
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.hxx | 10 |
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 > |