diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-11-18 16:28:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-11-21 10:05:30 +0100 |
commit | 727141098b7d7bfed65e64d2062042269a8f6088 (patch) | |
tree | 501a17c09c13644185c6bc566db165cf59a24099 /svx/source/sidebar | |
parent | ab10008ecaa33228838115a0b714e4f118c07ac1 (diff) |
loplugin:unusedfields start removing unused weld fields
Change-Id: If736ff669ffe24c3dd111c26285c19fc65806a3d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142946
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/sidebar')
-rw-r--r-- | svx/source/sidebar/effect/EffectPropertyPanel.cxx | 4 | ||||
-rw-r--r-- | svx/source/sidebar/effect/EffectPropertyPanel.hxx | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/svx/source/sidebar/effect/EffectPropertyPanel.cxx b/svx/source/sidebar/effect/EffectPropertyPanel.cxx index 77e2dac11229..400dda997962 100644 --- a/svx/source/sidebar/effect/EffectPropertyPanel.cxx +++ b/svx/source/sidebar/effect/EffectPropertyPanel.cxx @@ -34,8 +34,6 @@ EffectPropertyPanel::EffectPropertyPanel(weld::Widget* pParent, SfxBindings* pBi [this] { return GetFrameWeld(); })) , mxGlowTransparency( m_xBuilder->weld_metric_spin_button("LB_GLOW_TRANSPARENCY", FieldUnit::PERCENT)) - , mxFTRadiusSoftEdge(m_xBuilder->weld_label("radiussoftedge")) - , mxFTRadiusGlow(m_xBuilder->weld_label("radiusglow")) , mxFTColor(m_xBuilder->weld_label("glowcolorlabel")) , mxSoftEdgeRadius(m_xBuilder->weld_metric_spin_button("SB_SOFTEDGE_RADIUS", FieldUnit::POINT)) { @@ -47,11 +45,9 @@ EffectPropertyPanel::~EffectPropertyPanel() mxGlowRadius.reset(); mxLBGlowColor.reset(); mxGlowTransparency.reset(); - mxFTRadiusSoftEdge.reset(); mxFTColor.reset(); mxFTTransparency.reset(); mxSoftEdgeRadius.reset(); - mxFTRadiusGlow.reset(); maGlowColorController.dispose(); maGlowRadiusController.dispose(); diff --git a/svx/source/sidebar/effect/EffectPropertyPanel.hxx b/svx/source/sidebar/effect/EffectPropertyPanel.hxx index d657d83e61ca..7edc219a47bd 100644 --- a/svx/source/sidebar/effect/EffectPropertyPanel.hxx +++ b/svx/source/sidebar/effect/EffectPropertyPanel.hxx @@ -43,8 +43,6 @@ private: std::unique_ptr<weld::MetricSpinButton> mxGlowRadius; std::unique_ptr<ColorListBox> mxLBGlowColor; std::unique_ptr<weld::MetricSpinButton> mxGlowTransparency; - std::unique_ptr<weld::Label> mxFTRadiusSoftEdge; - std::unique_ptr<weld::Label> mxFTRadiusGlow; std::unique_ptr<weld::Label> mxFTColor; std::unique_ptr<weld::MetricSpinButton> mxSoftEdgeRadius; |