summaryrefslogtreecommitdiff
path: root/svtools/source/svrtf/rtfout.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-24 09:42:33 +0200
committerNoel Grandin <noel@peralex.com>2014-03-25 14:32:53 +0200
commitf5864e8ff4958268b50b15bc4c60c3d0fcfe20d9 (patch)
treebe313acab5cc630c26ef0266ac363a51b62a8226 /svtools/source/svrtf/rtfout.cxx
parent514d33fa3a409681be93bed3fb33f940a5549d88 (diff)
svtools: sal_Bool->bool
Change-Id: Ia0280d3d4f2d5b8a93a37a93847951391e928028
Diffstat (limited to 'svtools/source/svrtf/rtfout.cxx')
-rw-r--r--svtools/source/svrtf/rtfout.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/svrtf/rtfout.cxx b/svtools/source/svrtf/rtfout.cxx
index 12839ed064cf..d95259520263 100644
--- a/svtools/source/svrtf/rtfout.cxx
+++ b/svtools/source/svrtf/rtfout.cxx
@@ -25,7 +25,7 @@
#include <svtools/rtfout.hxx>
SvStream& RTFOutFuncs::Out_Char(SvStream& rStream, sal_Unicode c,
- int *pUCMode, rtl_TextEncoding eDestEnc, sal_Bool bWriteHelpFile)
+ int *pUCMode, rtl_TextEncoding eDestEnc, bool bWriteHelpFile)
{
const sal_Char* pStr = 0;
switch (c)
@@ -148,7 +148,7 @@ SvStream& RTFOutFuncs::Out_Char(SvStream& rStream, sal_Unicode c,
}
SvStream& RTFOutFuncs::Out_String( SvStream& rStream, const OUString& rStr,
- rtl_TextEncoding eDestEnc, sal_Bool bWriteHelpFile)
+ rtl_TextEncoding eDestEnc, bool bWriteHelpFile)
{
int nUCMode = 1;
for (sal_Int32 n = 0; n < rStr.getLength(); ++n)