summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-12-18 00:20:02 +0100
committerMichael Stahl <mstahl@redhat.com>2013-12-18 00:20:02 +0100
commit8272ffb8ed00f211a8fbda71136d695b42249b70 (patch)
treeafbd7c66c90515b71e0cab6d9c303b23f637c16c
parent22355042a6fc7aecf3caab69b3fa3be1430b697f (diff)
fix integral ambiguity
Change-Id: Idf022c8a4cd78c525a5c40ec8fe7a1e304b9aecc
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
index e8279c097447..bc7c87e43591 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
@@ -2063,7 +2063,7 @@ DECLARE_OOXMLEXPORT_TEST(testThemePreservation, "theme-preservation.docx")
// check theme font color value has been preserved
assertXPath(pXmlDocument, "/w:document/w:body/w:p[4]/w:r[1]/w:rPr/w:color", "themeColor", "accent3");
OUString sThemeShade = getXPath(pXmlDocument, "/w:document/w:body/w:p[4]/w:r[1]/w:rPr/w:color", "themeShade");
- CPPUNIT_ASSERT_EQUAL(sThemeShade.toInt32(16), 0xbf);
+ CPPUNIT_ASSERT_EQUAL(sThemeShade.toInt32(16), sal_Int32(0xbf));
// check the themeFontLang values in settings file
xmlDocPtr pXmlSettings = parseExport("word/settings.xml");