diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:19:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:25:50 +0200 |
commit | 259ece83e9b114ccc8403bbde97e5b11d4319865 (patch) | |
tree | 31853733c2027b58e2b9db23c0d5943e16dadb3c /sdext/source/presenter/PresenterPane.cxx | |
parent | 0003e99b393e817ff3cd753f3798012d0ab2f8fb (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I0a24f0d6fa58407f9e365a5c812743151b88513b
Diffstat (limited to 'sdext/source/presenter/PresenterPane.cxx')
-rw-r--r-- | sdext/source/presenter/PresenterPane.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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 -------------------------------------------------------- |