summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
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)