summaryrefslogtreecommitdiff
path: root/vcl/source/app/settings.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-03 10:53:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-03 12:16:38 +0200
commit77e9216ca1073caa0dcec23ef89808cc7f80fc06 (patch)
tree71ea2c3841f1a1017123dec44552239d74fd7a4a /vcl/source/app/settings.cxx
parent81903d443116c643a9ff92d92c092812abc7f57d (diff)
loplugin:unusedfields
and filter out the weld fields, since we're not touching them yet Change-Id: I3cc23c46d2650f13cb29c7d381687939d23e2882 Reviewed-on: https://gerrit.libreoffice.org/80104 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/app/settings.cxx')
-rw-r--r--vcl/source/app/settings.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx
index 74bb8fcd5219..fdd524e06f20 100644
--- a/vcl/source/app/settings.cxx
+++ b/vcl/source/app/settings.cxx
@@ -182,7 +182,6 @@ struct ImplStyleData
//primary means scroll by single page. Secondary button takes the alternative behaviour
bool mbPrimaryButtonWarpsSlider;
DialogStyle maDialogStyle;
- FrameStyle maFrameStyle;
sal_uInt16 mnEdgeBlending;
Color maEdgeBlendingTopLeftColor;
@@ -575,7 +574,6 @@ ImplStyleData::ImplStyleData( const ImplStyleData& rData ) :
meContextMenuShortcuts(rData.meContextMenuShortcuts),
mbPrimaryButtonWarpsSlider(rData.mbPrimaryButtonWarpsSlider),
maDialogStyle( rData.maDialogStyle ),
- maFrameStyle( rData.maFrameStyle ),
mnEdgeBlending(rData.mnEdgeBlending),
maEdgeBlendingTopLeftColor(rData.maEdgeBlendingTopLeftColor),
maEdgeBlendingBottomRightColor(rData.maEdgeBlendingBottomRightColor),
@@ -1883,19 +1881,6 @@ StyleSettings::SetDialogStyle( const DialogStyle& rStyle )
mxData->maDialogStyle = rStyle;
}
-const FrameStyle&
-StyleSettings::GetFrameStyle() const
-{
- return mxData->maFrameStyle;
-}
-
-void
-StyleSettings::SetFrameStyle( const FrameStyle& rStyle )
-{
- CopyData();
- mxData->maFrameStyle = rStyle;
-}
-
void
StyleSettings::SetEdgeBlending(sal_uInt16 nCount)
{