From 783419657cda0565716d363928c8cf5ac5035f8c Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 21 Apr 2016 17:29:40 +0200 Subject: loplugin:salbool: sal_Bool[] -> bool[] Change-Id: I3c5bf7a53c9ae173f8fce885ecf022f092aa43a9 --- sax/source/expatwrap/saxwriter.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sax') diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx index a58a77af70d6..b055ae49bfce 100644 --- a/sax/source/expatwrap/saxwriter.cxx +++ b/sax/source/expatwrap/saxwriter.cxx @@ -165,13 +165,13 @@ public: inline void clearBuffer() throw( SAXException ); }; -const sal_Bool g_bValidCharsBelow32[32] = +const bool g_bValidCharsBelow32[32] = { -// 0 1 2 3 4 5 6 7 - 0,0,0,0,0,0,0,0, //0 - 0,1,1,0,0,1,0,0, //8 - 0,0,0,0,0,0,0,0, //16 - 0,0,0,0,0,0,0,0 +// 0 1 2 3 4 5 6 7 + false,false,false,false,false,false,false,false, //0 + false,true, true, false,false,true, false,false, //8 + false,false,false,false,false,false,false,false, //16 + false,false,false,false,false,false,false,false }; inline bool IsInvalidChar(const sal_Unicode aChar) -- cgit