summaryrefslogtreecommitdiff
path: root/include/svtools/helpopt.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-20 14:38:38 +0200
committerNoel Grandin <noel@peralex.com>2014-03-24 08:12:10 +0200
commit7a679ee19c3a18d89277c28b12bf81911acfef85 (patch)
tree4a98a2beb9997a9c4ba66bc01a4f40b9d15f60b1 /include/svtools/helpopt.hxx
parent554e54429c586468778cea4a4571b80de7d28d8d (diff)
svtools: sal_Bool->bool
Change-Id: I35c9c1514c67860e61b6e2457ab4548d04a4d159
Diffstat (limited to 'include/svtools/helpopt.hxx')
-rw-r--r--include/svtools/helpopt.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svtools/helpopt.hxx b/include/svtools/helpopt.hxx
index 75ea3b89faa2..c9f44c7aedd3 100644
--- a/include/svtools/helpopt.hxx
+++ b/include/svtools/helpopt.hxx
@@ -35,16 +35,16 @@ public:
SvtHelpOptions();
virtual ~SvtHelpOptions();
- void SetExtendedHelp( sal_Bool b );
- bool IsExtendedHelp() const;
- void SetHelpTips( sal_Bool b );
- bool IsHelpTips() const;
+ void SetExtendedHelp( bool b );
+ bool IsExtendedHelp() const;
+ void SetHelpTips( bool b );
+ bool IsHelpTips() const;
const OUString& GetHelpStyleSheet()const;
void SetHelpStyleSheet(const OUString& rStyleSheet);
- void SetWelcomeScreen( sal_Bool b );
- sal_Bool IsWelcomeScreen() const;
+ void SetWelcomeScreen( bool b );
+ bool IsWelcomeScreen() const;
OUString GetSystem() const;
};