diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-18 11:23:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-18 11:27:39 +0200 |
commit | c3e3f466571e4993c1b5e42c6d15e37c48f3a069 (patch) | |
tree | 538fb90ed2c05e725f28ff16d41fd27ca38a7573 /starmath | |
parent | e399c0759812affd4f7f6e1e3aacfbcafc06ad6d (diff) |
sfx2: sal_Bool->bool
Change-Id: I375a72c34e46778385a9fdc24c9ebd0f0a3f3c9b
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/inc/view.hxx | 4 | ||||
-rw-r--r-- | starmath/source/view.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
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" ); |