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

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Feb 1 18:05:06 UTC 2019


 xmloff/source/forms/elementimport.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ad972aad6ba94c5a8dd0fd1693efdd97a184e9e9
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Fri Feb 1 16:46:39 2019 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Fri Feb 1 19:04:33 2019 +0100

    Use << instead of + in SAL_WARN_IF
    
    Change-Id: Iedf02c89954458e762a1997ed1676a278570a00c
    Reviewed-on: https://gerrit.libreoffice.org/67251
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/xmloff/source/forms/elementimport.cxx b/xmloff/source/forms/elementimport.cxx
index d0df9c2b604d..e234ce5cf132 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -889,7 +889,7 @@ namespace xmloff
             SAL_WARN_IF(
                     _rPropValue.Name == PROPERTY_EFFECTIVE_VALUE
                 ||  _rPropValue.Name == PROPERTY_EFFECTIVE_DEFAULT, "xmloff",
-                "OControlImport::implTranslateValueProperty: invalid property type/name combination, Any and " + _rPropValue.Name);
+                "OControlImport::implTranslateValueProperty: invalid property type/name combination, Any and " << _rPropValue.Name);
 
             // Both properties are allowed to have a double or a string value,
             // so first try to convert the string into a number


More information about the Libreoffice-commits mailing list