summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-04-16 09:03:25 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-04-16 09:03:25 +0200
commitb3afd649f9d1a9f737b136a7cc8cfc6301e2c0d5 (patch)
tree676187907d5f1afe67ed0c1a3767a0a4bb52549c
parent2653baa095f9699731e54e8cc854482670f9f418 (diff)
-Werror,-Wunused-private-field
Change-Id: I13db9b3d43c13c216ef58c6a23cfe6c9000d1f2f
-rw-r--r--vcl/inc/BitmapInterpolateScaleFilter.hxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/vcl/inc/BitmapInterpolateScaleFilter.hxx b/vcl/inc/BitmapInterpolateScaleFilter.hxx
index 0fbe9ac3f4a8..3c6dd310909b 100644
--- a/vcl/inc/BitmapInterpolateScaleFilter.hxx
+++ b/vcl/inc/BitmapInterpolateScaleFilter.hxx
@@ -23,17 +23,11 @@ public:
{
}
- explicit BitmapInterpolateScaleFilter(Size aSize)
- : maSize(aSize)
- {
- }
-
virtual BitmapEx execute(BitmapEx const& rBitmapEx) override;
private:
double mfScaleX;
double mfScaleY;
- Size maSize;
};
#endif