summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdedxv.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-17 09:12:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-17 08:59:30 +0100
commit20ff62d319d9a8195a59d5b27ccc52d9000992c0 (patch)
treef32c6393778d7718e1cdda7f2281f8dfbf4dd591 /svx/source/svdraw/svdedxv.cxx
parent8eb2d2972583b909a249f5b0f22a9b1fbf533d24 (diff)
loplugin:expandablemethods
Change-Id: Ifc269d9996928085a3ab78033788465b4f029368 Reviewed-on: https://gerrit.libreoffice.org/85255 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw/svdedxv.cxx')
-rw-r--r--svx/source/svdraw/svdedxv.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx
index 2deae4c913cb..d5ed29862e3d 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -435,7 +435,6 @@ public:
// data read access
const sdr::overlay::OverlaySelection* getOverlaySelection() const { return mpOverlaySelection; }
const OutlinerView& getOutlinerView() const { return mrOutlinerView; }
- bool getVisualizeSurroundingFrame() const { return mbVisualizeSurroundingFrame; }
/// override to check conditions for last createOverlayObjectPrimitive2DSequence
virtual drawinglayer::primitive2d::Primitive2DContainer
@@ -453,7 +452,7 @@ TextEditOverlayObject::createOverlayObjectPrimitive2DSequence()
drawinglayer::primitive2d::Primitive2DContainer aRetval;
/// outer frame visualization
- if (getVisualizeSurroundingFrame())
+ if (mbVisualizeSurroundingFrame)
{
const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer;
const double fTransparence(aSvtOptionsDrawinglayer.GetTransparentSelectionPercent() * 0.01);