summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-09-12 16:00:46 +0200
committerMichael Stahl <mstahl@redhat.com>2013-09-12 16:01:45 +0200
commit08fb2bfeb18b6d5329bae8490bd02043d101bb06 (patch)
tree7915d6461a28bdca378aaa58ff860cbae194030d /xmloff
parentbc3759f2dba31b958219f02b8bbb043d8bdb729f (diff)
xmloff: fix Apple g++ 4.2.1 warning
Change-Id: I7ded25661e7d3343afc783e804ab5f3cf0207641
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/forms/propertyexport.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmloff/source/forms/propertyexport.cxx b/xmloff/source/forms/propertyexport.cxx
index c5727fa474d3..299acf555e2d 100644
--- a/xmloff/source/forms/propertyexport.cxx
+++ b/xmloff/source/forms/propertyexport.cxx
@@ -674,7 +674,8 @@ namespace xmloff
// the property must exist
if (!m_xPropertyInfo->hasPropertyByName(_rPropertyName))
{
- OSL_FAIL("OPropertyExport::dbg_implCheckProperty: no property with the name " + OUStringToOString(_rPropertyName, RTL_TEXTENCODING_ASCII_US) + "!");
+ SAL_WARN("xmloff.forms", "OPropertyExport: "
+ "no property with the name " + _rPropertyName + "!");
return;
}