diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-17 09:12:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-17 08:59:30 +0100 |
commit | 20ff62d319d9a8195a59d5b27ccc52d9000992c0 (patch) | |
tree | f32c6393778d7718e1cdda7f2281f8dfbf4dd591 /include/basegfx | |
parent | 8eb2d2972583b909a249f5b0f22a9b1fbf533d24 (diff) |
loplugin:expandablemethods
Change-Id: Ifc269d9996928085a3ab78033788465b4f029368
Reviewed-on: https://gerrit.libreoffice.org/85255
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/basegfx')
-rw-r--r-- | include/basegfx/color/bcolormodifier.hxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/include/basegfx/color/bcolormodifier.hxx b/include/basegfx/color/bcolormodifier.hxx index 503581d31500..41c47bd54edc 100644 --- a/include/basegfx/color/bcolormodifier.hxx +++ b/include/basegfx/color/bcolormodifier.hxx @@ -200,10 +200,6 @@ namespace basegfx virtual ~BColorModifier_interpolate() override; - // data access - const ::basegfx::BColor& getBColor() const { return maBColor; } - double getValue() const { return mfValue; } - // compare operator virtual bool operator==(const BColorModifier& rCompare) const override; @@ -230,9 +226,6 @@ namespace basegfx virtual ~BColorModifier_black_and_white() override; - // data access - double getValue() const { return mfValue; } - // compare operator virtual bool operator==(const BColorModifier& rCompare) const override; @@ -260,9 +253,6 @@ namespace basegfx virtual ~BColorModifier_gamma() override; - // data access - double getValue() const { return mfValue; } - // compare operator virtual bool operator==(const BColorModifier& rCompare) const override; @@ -299,13 +289,6 @@ namespace basegfx virtual ~BColorModifier_RGBLuminanceContrast() override; - // data access - double getRed() const { return mfRed; } - double getGreen() const { return mfGreen; } - double getBlue() const { return mfBlue; } - double getLuminance() const { return mfLuminance; } - double getContrast() const { return mfContrast; } - // compare operator virtual bool operator==(const BColorModifier& rCompare) const override; |