diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-14 10:41:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-14 11:37:35 +0200 |
commit | 8303e7ed668fbcbd0ba75bd9dd259f03073ffd46 (patch) | |
tree | bfcbb0f58c0fd8cbd5c03d93fc5b1d4ab3ef817b /include/svx | |
parent | a64692944a0a22feeef4a943d45137b25494cf64 (diff) |
loplugin:unusedfields improvements
tighten up the only calling write-only methods part of the analysis
Change-Id: I5bc6fdf0ce51940653317e8a48c5241705c90d4c
Reviewed-on: https://gerrit.libreoffice.org/74022
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/dlgctl3d.hxx | 1 | ||||
-rw-r--r-- | include/svx/ruler.hxx | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/include/svx/dlgctl3d.hxx b/include/svx/dlgctl3d.hxx index 4ff4defc36c0..d979e5fda32f 100644 --- a/include/svx/dlgctl3d.hxx +++ b/include/svx/dlgctl3d.hxx @@ -247,7 +247,6 @@ class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxLightCtl3D final : public Control VclPtr<PushButton> maSwitcher; // callback for interactive changes - Link<SvxLightCtl3D*,void> maUserInteractiveChangeCallback; Link<SvxLightCtl3D*,void> maUserSelectionChangeCallback; public: diff --git a/include/svx/ruler.hxx b/include/svx/ruler.hxx index d69c4f672f0a..b27b49ca1b27 100644 --- a/include/svx/ruler.hxx +++ b/include/svx/ruler.hxx @@ -91,7 +91,6 @@ class SVX_DLLPUBLIC SvxRuler: public Ruler, public SfxListener std::unique_ptr<SvxLongULSpaceItem> mxULSpaceItem; // upper and lower edge std::unique_ptr<SvxTabStopItem> mxTabStopItem; // tab stops std::unique_ptr<SvxLRSpaceItem> mxParaItem; // paragraphs - std::unique_ptr<SvxLRSpaceItem> mxParaBorderItem; // border distance std::unique_ptr<SvxPagePosSizeItem> mxPagePosItem; // page distance to the rule std::unique_ptr<SvxColumnItem> mxColumnItem; // columns std::unique_ptr<SvxObjectItem> mxObjectItem; // object @@ -141,7 +140,7 @@ class SVX_DLLPUBLIC SvxRuler: public Ruler, public SfxListener // paragraph indentations void UpdatePara(const SvxLRSpaceItem* pItem); // Border distance - void UpdateParaBorder(const SvxLRSpaceItem* pItem); + void UpdateParaBorder(); // Tabs void Update(const SvxTabStopItem* pItem); // page position and width |