diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-14 11:37:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-14 15:18:22 +0200 |
commit | ed617a7e6caf8a7f9f0f67bceb1280f61f5428c8 (patch) | |
tree | ade300688af3efc358bc56da55065822e6fd5bcb /svx | |
parent | 015dc88a595c1c92d2b724cd868aecb07199f995 (diff) |
loplugin:unusedmethods
Change-Id: I7787a8eedf500b0b16c04114935d3d3124d9ac3d
Reviewed-on: https://gerrit.libreoffice.org/74032
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/accessibility/DescriptionGenerator.cxx | 18 | ||||
-rw-r--r-- | svx/source/dialog/fntctrl.cxx | 6 |
2 files changed, 0 insertions, 24 deletions
diff --git a/svx/source/accessibility/DescriptionGenerator.cxx b/svx/source/accessibility/DescriptionGenerator.cxx index c889a79e31ad..cefe8e104fcc 100644 --- a/svx/source/accessibility/DescriptionGenerator.cxx +++ b/svx/source/accessibility/DescriptionGenerator.cxx @@ -183,24 +183,6 @@ void DescriptionGenerator::AppendString (const OUString& sString) } -void DescriptionGenerator::AddLineProperties() -{ - AddProperty ("LineColor", DescriptionGenerator::PropertyType::Color, SIP_XA_LINECOLOR); - AddProperty ("LineDashName", DescriptionGenerator::PropertyType::String, - SIP_XA_LINEDASH, XATTR_LINEDASH); - AddProperty ("LineWidth", DescriptionGenerator::PropertyType::Integer, SIP_XA_LINEWIDTH); -} - - -/** The fill style is described by the property "FillStyle". Depending on - its value a hatch-, gradient-, or bitmap name is appended. -*/ -void DescriptionGenerator::AddFillProperties() -{ - AddProperty ("FillStyle", DescriptionGenerator::PropertyType::FillStyle, SIP_XA_FILLSTYLE); -} - - /** Search for the given color in the global color table. If found append its name to the description. Otherwise append its RGB tuple. */ diff --git a/svx/source/dialog/fntctrl.cxx b/svx/source/dialog/fntctrl.cxx index 5091c905063f..319f70e3192a 100644 --- a/svx/source/dialog/fntctrl.cxx +++ b/svx/source/dialog/fntctrl.cxx @@ -809,12 +809,6 @@ bool SvxFontPrevWindow::IsTwoLines() const return pImpl->mbTwoLines; } -void SvxFontPrevWindow::SetFontWidthScale( sal_uInt16 n ) -{ - if (pImpl->SetFontWidthScale(n)) - Invalidate(); -} - static bool GetWhich (const SfxItemSet& rSet, sal_uInt16 nSlot, sal_uInt16& rWhich) { rWhich = rSet.GetPool()->GetWhich(nSlot); |