summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-05 16:23:36 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:20 +0200
commitaaee84c4c865ee121de6d9110c27d51c90dc936b (patch)
treed742fce3620d867f949784a425e1c003d2d4d240 /sd/source
parent37a2ed040e0e11ecef115d8955e09845aeff7511 (diff)
svx: sal_Bool->bool
Change-Id: I26a7bded5138d646c67ae396690659ee13ba9f36
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/ui/view/viewshel.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx
index d2752d04ac80..b3a020895b34 100644
--- a/sd/source/ui/view/viewshel.cxx
+++ b/sd/source/ui/view/viewshel.cxx
@@ -313,9 +313,9 @@ void ViewShell::Activate(sal_Bool bIsMDIActivate)
gets the focus. */
if (mpHorizontalRuler.get() != NULL)
- mpHorizontalRuler->SetActive(sal_True);
+ mpHorizontalRuler->SetActive(true);
if (mpVerticalRuler.get() != NULL)
- mpVerticalRuler->SetActive(sal_True);
+ mpVerticalRuler->SetActive(true);
if (bIsMDIActivate)
{
@@ -401,9 +401,9 @@ void ViewShell::Deactivate(sal_Bool bIsMDIActivate)
}
if (mpHorizontalRuler.get() != NULL)
- mpHorizontalRuler->SetActive(sal_False);
+ mpHorizontalRuler->SetActive(false);
if (mpVerticalRuler.get() != NULL)
- mpVerticalRuler->SetActive(sal_False);
+ mpVerticalRuler->SetActive(false);
SfxShell::Deactivate(bIsMDIActivate);
}
@@ -733,7 +733,7 @@ void ViewShell::SetupRulers (void)
if ( mpVerticalRuler.get() != NULL )
{
nHRulerOfs = mpVerticalRuler->GetSizePixel().Width();
- mpVerticalRuler->SetActive(sal_True);
+ mpVerticalRuler->SetActive(true);
mpVerticalRuler->Show();
}
}
@@ -743,7 +743,7 @@ void ViewShell::SetupRulers (void)
if ( mpHorizontalRuler.get() != NULL )
{
mpHorizontalRuler->SetWinPos(nHRulerOfs);
- mpHorizontalRuler->SetActive(sal_True);
+ mpHorizontalRuler->SetActive(true);
mpHorizontalRuler->Show();
}
}