From f5864e8ff4958268b50b15bc4c60c3d0fcfe20d9 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 24 Mar 2014 09:42:33 +0200 Subject: svtools: sal_Bool->bool Change-Id: Ia0280d3d4f2d5b8a93a37a93847951391e928028 --- svtools/source/svrtf/rtfout.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svtools/source/svrtf/rtfout.cxx') 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 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) -- cgit