summaryrefslogtreecommitdiff
path: root/sw/source/core/view/viewsh.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/view/viewsh.cxx')
-rw-r--r--sw/source/core/view/viewsh.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx
index 61fbf74d254c..c5062f1a4b13 100644
--- a/sw/source/core/view/viewsh.cxx
+++ b/sw/source/core/view/viewsh.cxx
@@ -420,7 +420,7 @@ void SwViewShell::ImplStartAction()
void SwViewShell::ImplLockPaint()
{
if ( GetWin() && GetWin()->IsVisible() )
- GetWin()->EnablePaint( sal_False ); //Also cut off the controls.
+ GetWin()->EnablePaint( false ); //Also cut off the controls.
Imp()->LockPaint();
}
@@ -439,7 +439,7 @@ void SwViewShell::ImplUnlockPaint( sal_Bool bVirDev )
aSize.Height()+= 20;
if( pVout->SetOutputSize( aSize ) )
{
- GetWin()->EnablePaint( sal_True );
+ GetWin()->EnablePaint( true );
GetWin()->Validate();
Imp()->UnlockPaint();
@@ -465,7 +465,7 @@ void SwViewShell::ImplUnlockPaint( sal_Bool bVirDev )
else
{
Imp()->UnlockPaint();
- GetWin()->EnablePaint( sal_True );
+ GetWin()->EnablePaint( true );
GetWin()->Invalidate( INVALIDATE_CHILDREN );
}
delete pVout;
@@ -473,7 +473,7 @@ void SwViewShell::ImplUnlockPaint( sal_Bool bVirDev )
else
{
Imp()->UnlockPaint();
- GetWin()->EnablePaint( sal_True );
+ GetWin()->EnablePaint( true );
GetWin()->Invalidate( INVALIDATE_CHILDREN );
}
}