[Libreoffice-commits] core.git: xmloff/source

Michael Stahl mstahl at redhat.com
Thu Sep 12 07:05:20 PDT 2013


 xmloff/source/forms/propertyexport.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 08fb2bfeb18b6d5329bae8490bd02043d101bb06
Author: Michael Stahl <mstahl at redhat.com>
Date:   Thu Sep 12 16:00:46 2013 +0200

    xmloff: fix Apple g++ 4.2.1 warning
    
    Change-Id: I7ded25661e7d3343afc783e804ab5f3cf0207641

diff --git a/xmloff/source/forms/propertyexport.cxx b/xmloff/source/forms/propertyexport.cxx
index c5727fa..299acf5 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;
             }
 


More information about the Libreoffice-commits mailing list