summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-05-19 13:49:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-05-19 14:43:32 +0200
commit174f1785c423d268ebf23fba6529714af366fb97 (patch)
treed4c1fcdfff43274844b0fa3b76069fdc12dc1f0c /sc/source/ui
parent4435a3b02525067700ee494dbd91d84df985b001 (diff)
fix loplugin:vclwidgets fallout
from "tdf#125538 fix background of zoom control" Change-Id: I444dea360ab10be6bebfe50a1f7b4d2f555bf59b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94498 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/cctrl/tbzoomsliderctrl.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/cctrl/tbzoomsliderctrl.cxx b/sc/source/ui/cctrl/tbzoomsliderctrl.cxx
index e6214f8e05e1..24f6a9b8df9c 100644
--- a/sc/source/ui/cctrl/tbzoomsliderctrl.cxx
+++ b/sc/source/ui/cctrl/tbzoomsliderctrl.cxx
@@ -97,7 +97,7 @@ struct ScZoomSlider::ScZoomSliderWnd_Impl
Image maIncreaseButton;
Image maDecreaseButton;
bool mbOmitPaint;
- vcl::Window* mpParentWindow;
+ VclPtr<vcl::Window> mxParentWindow;
explicit ScZoomSliderWnd_Impl( sal_uInt16 nCurrentZoom, vcl::Window* parentWindow ) :
mnCurrentZoom( nCurrentZoom ),
@@ -109,7 +109,7 @@ struct ScZoomSlider::ScZoomSliderWnd_Impl
maIncreaseButton(),
maDecreaseButton(),
mbOmitPaint( false ),
- mpParentWindow(parentWindow)
+ mxParentWindow(parentWindow)
{
}
};
@@ -278,7 +278,7 @@ bool ScZoomSlider::MouseButtonDown( const MouseEvent& rMEvt )
return true;
// need to invalidate parent since we rely on the toolbox drawing it's fancy gradient background
- mpImpl->mpParentWindow->Invalidate();
+ mpImpl->mxParentWindow->Invalidate();
mpImpl->mbOmitPaint = true;
SvxZoomSliderItem aZoomSliderItem( mpImpl->mnCurrentZoom );
@@ -313,7 +313,7 @@ bool ScZoomSlider::MouseMove( const MouseEvent& rMEvt )
mpImpl->mnCurrentZoom = Offset2Zoom( aPoint.X() );
// need to invalidate parent since we rely on the toolbox drawing it's fancy gradient background
- mpImpl->mpParentWindow->Invalidate();
+ mpImpl->mxParentWindow->Invalidate();
mpImpl->mbOmitPaint = true; // optimization: paint before executing command,
@@ -381,7 +381,7 @@ void ScZoomSlider::UpdateFromItem(const SvxZoomSliderItem* pZoomSliderItem)
if ( !mpImpl->mbOmitPaint )
// need to invalidate parent since we rely on the toolbox drawing it's fancy gradient background
- mpImpl->mpParentWindow->Invalidate();
+ mpImpl->mxParentWindow->Invalidate();
}
void ScZoomSlider::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& /*rRect*/)