diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-19 12:54:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-24 08:12:07 +0200 |
commit | 9f12e4a351cdaf7d22bf1699914cd58e3642e808 (patch) | |
tree | 56e5cc1c2bfa0dd2438867bf1eadef055e031e63 /include/svtools/accessibilityoptions.hxx | |
parent | 83d807ba78bfc0b1648e0b574af0d490352bc469 (diff) |
svtools: sal_Bool->bool
Change-Id: Ic765d1a28960dbeca9501852b5e84cfdfe6ac47e
Diffstat (limited to 'include/svtools/accessibilityoptions.hxx')
-rw-r--r-- | include/svtools/accessibilityoptions.hxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/include/svtools/accessibilityoptions.hxx b/include/svtools/accessibilityoptions.hxx index 12110a62fc2f..e483be94abe9 100644 --- a/include/svtools/accessibilityoptions.hxx +++ b/include/svtools/accessibilityoptions.hxx @@ -39,28 +39,28 @@ public: virtual ~SvtAccessibilityOptions(); // get & set config entries - sal_Bool GetIsForPagePreviews() const; - sal_Bool GetIsHelpTipsDisappear() const; - sal_Bool GetIsAllowAnimatedGraphics() const; - sal_Bool GetIsAllowAnimatedText() const; - sal_Bool GetIsAutomaticFontColor() const; - bool GetIsSystemFont() const; + bool GetIsForPagePreviews() const; + bool GetIsHelpTipsDisappear() const; + bool GetIsAllowAnimatedGraphics() const; + bool GetIsAllowAnimatedText() const; + bool GetIsAutomaticFontColor() const; + bool GetIsSystemFont() const; sal_Int16 GetHelpTipSeconds() const; - sal_Bool IsSelectionInReadonly() const; - sal_Bool GetAutoDetectSystemHC() const; + bool IsSelectionInReadonly() const; + bool GetAutoDetectSystemHC() const; - void SetIsForPagePreviews(sal_Bool bSet); - void SetIsHelpTipsDisappear(sal_Bool bSet); - void SetIsAllowAnimatedGraphics(sal_Bool bSet); - void SetIsAllowAnimatedText(sal_Bool bSet); - void SetIsAutomaticFontColor(sal_Bool bSet); - void SetIsSystemFont(sal_Bool bSet); + void SetIsForPagePreviews(bool bSet); + void SetIsHelpTipsDisappear(bool bSet); + void SetIsAllowAnimatedGraphics(bool bSet); + void SetIsAllowAnimatedText(bool bSet); + void SetIsAutomaticFontColor(bool bSet); + void SetIsSystemFont(bool bSet); void SetHelpTipSeconds(sal_Int16 nSet); - void SetSelectionInReadonly(sal_Bool bSet); - void SetAutoDetectSystemHC(sal_Bool bSet); + void SetSelectionInReadonly(bool bSet); + void SetAutoDetectSystemHC(bool bSet); - sal_Bool IsModified() const; - void Commit(); + bool IsModified() const; + void Commit(); //SfxListener: virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ); |