summaryrefslogtreecommitdiff
path: root/sax/qa/cppunit/xmlimport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sax/qa/cppunit/xmlimport.cxx')
-rw-r--r--sax/qa/cppunit/xmlimport.cxx29
1 files changed, 18 insertions, 11 deletions
diff --git a/sax/qa/cppunit/xmlimport.cxx b/sax/qa/cppunit/xmlimport.cxx
index 449c9ef3b38c..076caefd8740 100644
--- a/sax/qa/cppunit/xmlimport.cxx
+++ b/sax/qa/cppunit/xmlimport.cxx
@@ -254,9 +254,9 @@ void SAL_CALL NSDocumentHandler::startElement( const OUString& aName, const Refe
class DummyTokenHandler : public sax_fastparser::FastTokenHandlerBase
{
public:
- const static OString tokens[];
+ const static OStringLiteral tokens[];
const static OUStringLiteral namespaceURIs[];
- const static OString namespacePrefixes[];
+ const static OStringLiteral namespacePrefixes[];
// XFastTokenHandler
virtual Sequence< sal_Int8 > SAL_CALL getUTF8Identifier( sal_Int32 nToken ) override;
@@ -265,15 +265,22 @@ public:
virtual sal_Int32 getTokenDirect( const char *pToken, sal_Int32 nLength ) const override;
};
-const OString DummyTokenHandler::tokens[] = { "Signature", "CanonicalizationMethod", "Algorithm", "Type",
- "DigestMethod", "Reference", "document",
- "spacing", "Player", "Height" };
-
-const OUStringLiteral DummyTokenHandler::namespaceURIs[] = { "http://www.w3.org/2000/09/xmldsig#",
- "http://schemas.openxmlformats.org/wordprocessingml/2006/main/",
- "xyzsports.com/players/football/" };
-
-const OString DummyTokenHandler::namespacePrefixes[] = { "", "w", "Player" };
+const OStringLiteral DummyTokenHandler::tokens[] = {
+ OStringLiteral("Signature"), OStringLiteral("CanonicalizationMethod"),
+ OStringLiteral("Algorithm"), OStringLiteral("Type"),
+ OStringLiteral("DigestMethod"), OStringLiteral("Reference"),
+ OStringLiteral("document"), OStringLiteral("spacing"),
+ OStringLiteral("Player"), OStringLiteral("Height") };
+
+const OUStringLiteral DummyTokenHandler::namespaceURIs[] = {
+ "http://www.w3.org/2000/09/xmldsig#",
+ "http://schemas.openxmlformats.org/wordprocessingml/2006/main/",
+ "xyzsports.com/players/football/" };
+
+const OStringLiteral DummyTokenHandler::namespacePrefixes[] = {
+ OStringLiteral(""),
+ OStringLiteral("w"),
+ OStringLiteral("Player") };
Sequence< sal_Int8 > DummyTokenHandler::getUTF8Identifier( sal_Int32 nToken )
{