summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-11-09 15:47:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-10 12:56:14 +0100
commit32823280efffc02a250fc8d4749b8eb0f491ae77 (patch)
treed53b384498f6ba4c40b3449205eda96d45fc7c1e /svx
parent617fb9eed92711639e4e632132a649f23ac2f3eb (diff)
loplugin:unusedmethods
Change-Id: I543b0943f0bc918d59debc8ee051f88c29d18454 Reviewed-on: https://gerrit.libreoffice.org/44553 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/framelink.cxx15
-rw-r--r--svx/source/dialog/rulritem.cxx8
2 files changed, 0 insertions, 23 deletions
diff --git a/svx/source/dialog/framelink.cxx b/svx/source/dialog/framelink.cxx
index 6ee2988ebcb6..f96c3b5e5f95 100644
--- a/svx/source/dialog/framelink.cxx
+++ b/svx/source/dialog/framelink.cxx
@@ -86,21 +86,6 @@ Style::Style( const editeng::SvxBorderLine* pBorder, double fScale ) :
}
}
-void Style::SetPatternScale( double fScale )
-{
- if(!maImplStyle)
- {
- if(rtl::math::approxEqual(1.0, fScale))
- {
- return;
- }
-
- implEnsureImplStyle();
- }
-
- maImplStyle->mfPatternScale = fScale;
-}
-
void Style::Clear()
{
if(maImplStyle)
diff --git a/svx/source/dialog/rulritem.cxx b/svx/source/dialog/rulritem.cxx
index e7426f0e0adc..8dc6c275dec5 100644
--- a/svx/source/dialog/rulritem.cxx
+++ b/svx/source/dialog/rulritem.cxx
@@ -568,14 +568,6 @@ bool SvxColumnItem::IsLastAct() const
return nActColumn == Count() - 1;
}
-SvxColumnDescription::SvxColumnDescription() :
- nStart (0),
- nEnd (0),
- bVisible (true),
- nEndMin (0),
- nEndMax (0)
-{}
-
SvxColumnDescription::SvxColumnDescription(long start, long end, bool bVis) :
nStart (start),
nEnd (end),