From c3e3f466571e4993c1b5e42c6d15e37c48f3a069 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 18 Mar 2014 11:23:57 +0200 Subject: sfx2: sal_Bool->bool Change-Id: I375a72c34e46778385a9fdc24c9ebd0f0a3f3c9b --- starmath/inc/view.hxx | 4 ++-- starmath/source/view.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'starmath') diff --git a/starmath/inc/view.hxx b/starmath/inc/view.hxx index 92973a2e35e5..f231bda96351 100644 --- a/starmath/inc/view.hxx +++ b/starmath/inc/view.hxx @@ -266,8 +266,8 @@ protected: virtual bool HasPrintOptionsPage() const; virtual SfxTabPage *CreatePrintOptionsPage(Window *pParent, const SfxItemSet &rOptions); - virtual void Deactivate(sal_Bool IsMDIActivate); - virtual void Activate(sal_Bool IsMDIActivate); + virtual void Deactivate(bool IsMDIActivate); + virtual void Activate(bool IsMDIActivate); virtual void AdjustPosSizePixel(const Point &rPos, const Size &rSize); virtual void InnerResizePixel(const Point &rOfs, const Size &rSize); virtual void OuterResizePixel(const Point &rOfs, const Size &rSize); diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx index e6f6add3c627..c3d5c493edbf 100644 --- a/starmath/source/view.cxx +++ b/starmath/source/view.cxx @@ -2023,7 +2023,7 @@ SmViewShell::~SmViewShell() delete pImpl; } -void SmViewShell::Deactivate( sal_Bool bIsMDIActivate ) +void SmViewShell::Deactivate( bool bIsMDIActivate ) { SAL_INFO( "starmath", "SmViewShell::Deactivate" ); @@ -2035,7 +2035,7 @@ void SmViewShell::Deactivate( sal_Bool bIsMDIActivate ) } -void SmViewShell::Activate( sal_Bool bIsMDIActivate ) +void SmViewShell::Activate( bool bIsMDIActivate ) { SAL_INFO( "starmath", "SmViewShell::Activate" ); -- cgit