summaryrefslogtreecommitdiff
path: root/include/svtools/ehdl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-20 11:14:54 +0200
committerNoel Grandin <noel@peralex.com>2014-03-24 08:12:09 +0200
commitf661ac03e049844fd529fb6ff02e628b32cac650 (patch)
treeec4c4c9ac697df5a3645e1d0c7d426d03968d50c /include/svtools/ehdl.hxx
parentb1de52241c1c2045ceab4ea3526f51f145be2930 (diff)
svtools: sal_Bool->bool
Change-Id: I22d8869551f46d2a0607f670f937853f394b6acf
Diffstat (limited to 'include/svtools/ehdl.hxx')
-rw-r--r--include/svtools/ehdl.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svtools/ehdl.hxx b/include/svtools/ehdl.hxx
index 402dbc8759de..0f5a4dbae228 100644
--- a/include/svtools/ehdl.hxx
+++ b/include/svtools/ehdl.hxx
@@ -54,19 +54,19 @@ public:
~SfxErrorHandler();
protected:
- virtual sal_Bool GetErrorString(sal_uLong lErrId, OUString &, sal_uInt16&) const;
- virtual sal_Bool GetMessageString(sal_uLong lErrId, OUString &, sal_uInt16&) const;
+ virtual bool GetErrorString(sal_uLong lErrId, OUString &, sal_uInt16&) const;
+ virtual bool GetMessageString(sal_uLong lErrId, OUString &, sal_uInt16&) const;
private:
sal_uLong lStart;
sal_uLong lEnd;
sal_uInt16 nId;
- ResMgr *pMgr;
- ResMgr *pFreeMgr;
+ ResMgr *pMgr;
+ ResMgr *pFreeMgr;
- SVT_DLLPRIVATE sal_Bool GetClassString(sal_uLong lErrId, OUString &) const;
- virtual bool CreateString( const ErrorInfo *, OUString &, sal_uInt16 &) const;
+ SVT_DLLPRIVATE bool GetClassString(sal_uLong lErrId, OUString &) const;
+ virtual bool CreateString( const ErrorInfo *, OUString &, sal_uInt16 &) const;
};
#endif