summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorAriel Constenla-Haile <arielch@apache.org>2013-06-06 03:23:59 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-06-06 13:14:10 +0100
commit9f97b3e270736284e2b189508b808711ebe46b26 (patch)
tree5e10ca6ca19e27ce6d5746ee878e980180323f00 /odk
parenteee32536181e415cde25ab0b9702bd8eb7db3d7b (diff)
Fix breaker when compiled with DEBUG=yes
(cherry picked from commit 07c6343beaea37e8e6254e0f988e19f1eccf38ce) Conflicts: odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx Change-Id: I75278282efc80f3e9c31c413842392030beeb265
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx
index 5cfe6601b2da..321bcf01076c 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx
@@ -178,7 +178,7 @@ sal_Bool XFlatXml::importer(
catch( Exception &exc)
{
// something went wrong
- OSL_FAIL(exc.Message);
+ OSL_FAIL(rtl::OUStringToOString(exc.Message,RTL_TEXTENCODING_UTF8).getStr());
return sal_False;
}