diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-20 16:41:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-24 08:12:10 +0200 |
commit | b41badb803b4d4597901fdc6c899305f3e914aaa (patch) | |
tree | fef608dcd073cd07fdd9c3c5ba28841d305bf593 /include/svtools/miscopt.hxx | |
parent | f7074d8de59f58367b31d7266037880403ac27ef (diff) |
svtools: sal_Bool->bool
Change-Id: I37352e90a5304e75ce0c8ae922a167b1e70625e8
Diffstat (limited to 'include/svtools/miscopt.hxx')
-rw-r--r-- | include/svtools/miscopt.hxx | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/include/svtools/miscopt.hxx b/include/svtools/miscopt.hxx index 8d0e1db477b0..e9c6fada6c79 100644 --- a/include/svtools/miscopt.hxx +++ b/include/svtools/miscopt.hxx @@ -70,16 +70,16 @@ class SVT_DLLPUBLIC SvtMiscOptions: public utl::detail::Options SvtMiscOptions(); virtual ~SvtMiscOptions(); - void AddListenerLink( const Link& rLink ); - void RemoveListenerLink( const Link& rLink ); + void AddListenerLink( const Link& rLink ); + void RemoveListenerLink( const Link& rLink ); - sal_Bool UseSystemFileDialog() const; - void SetUseSystemFileDialog( sal_Bool bSet ); - sal_Bool IsUseSystemFileDialogReadOnly() const; + bool UseSystemFileDialog() const; + void SetUseSystemFileDialog( bool bSet ); + bool IsUseSystemFileDialogReadOnly() const; - sal_Bool DisableUICustomization() const; + bool DisableUICustomization() const; - sal_Bool IsPluginsEnabled() const; + bool IsPluginsEnabled() const; sal_Int16 GetSymbolsSize() const; void SetSymbolsSize( sal_Int16 eSet ); @@ -94,24 +94,24 @@ class SVT_DLLPUBLIC SvtMiscOptions: public utl::detail::Options sal_Int16 GetToolboxStyle() const; void SetToolboxStyle( sal_Int16 nStyle ); - sal_Bool IsModifyByPrinting() const; - void SetModifyByPrinting(sal_Bool bSet ); + bool IsModifyByPrinting() const; + void SetModifyByPrinting(bool bSet ); - sal_Bool UseSystemPrintDialog() const; - void SetUseSystemPrintDialog( sal_Bool bSet ); + bool UseSystemPrintDialog() const; + void SetUseSystemPrintDialog( bool bSet ); - sal_Bool ShowLinkWarningDialog() const; - void SetShowLinkWarningDialog( sal_Bool bSet ); - sal_Bool IsShowLinkWarningDialogReadOnly() const; + bool ShowLinkWarningDialog() const; + void SetShowLinkWarningDialog( bool bSet ); + bool IsShowLinkWarningDialogReadOnly() const; - void SetSaveAlwaysAllowed( sal_Bool bSet ); - sal_Bool IsSaveAlwaysAllowed() const; + void SetSaveAlwaysAllowed( bool bSet ); + bool IsSaveAlwaysAllowed() const; - void SetExperimentalMode( sal_Bool bSet ); - sal_Bool IsExperimentalMode() const; + void SetExperimentalMode( bool bSet ); + bool IsExperimentalMode() const; - void SetMacroRecorderMode( sal_Bool bSet ); - sal_Bool IsMacroRecorderMode() const; + void SetMacroRecorderMode( bool bSet ); + bool IsMacroRecorderMode() const; private: |