summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-21 17:29:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-21 17:29:40 +0200
commit783419657cda0565716d363928c8cf5ac5035f8c (patch)
tree020ed01c4cdbcba17191cd7ef75e5aff25a379a6 /sax
parent8c423eeb49606087243fb6bbf31c0981c55dc773 (diff)
loplugin:salbool: sal_Bool[] -> bool[]
Change-Id: I3c5bf7a53c9ae173f8fce885ecf022f092aa43a9
Diffstat (limited to 'sax')
-rw-r--r--sax/source/expatwrap/saxwriter.cxx12
1 files changed, 6 insertions, 6 deletions
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)