From 259ece83e9b114ccc8403bbde97e5b11d4319865 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 20 Apr 2016 17:19:22 +0200 Subject: loplugin:salbool: Automatic rewrite of sal_False/True Change-Id: I0a24f0d6fa58407f9e365a5c812743151b88513b --- sdext/source/presenter/PresenterPane.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sdext/source/presenter/PresenterPane.cxx') diff --git a/sdext/source/presenter/PresenterPane.cxx b/sdext/source/presenter/PresenterPane.cxx index de2dfce53b55..8efbb05e1ee7 100644 --- a/sdext/source/presenter/PresenterPane.cxx +++ b/sdext/source/presenter/PresenterPane.cxx @@ -111,7 +111,7 @@ void SAL_CALL PresenterPane::windowShown (const lang::EventObject& rEvent) if (mxContentWindow.is()) { LayoutContextWindow(); - mxContentWindow->setVisible(sal_True); + mxContentWindow->setVisible(true); } UpdateBoundingBox(); @@ -125,7 +125,7 @@ void SAL_CALL PresenterPane::windowHidden (const lang::EventObject& rEvent) PresenterPaneBase::windowHidden(rEvent); if (mxContentWindow.is()) - mxContentWindow->setVisible(sal_False); + mxContentWindow->setVisible(false); } //----- XPaintListener -------------------------------------------------------- -- cgit