diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-02-01 16:46:39 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-02-01 19:04:33 +0100 |
commit | ad972aad6ba94c5a8dd0fd1693efdd97a184e9e9 (patch) | |
tree | c28298ee70d5792a9e4b7bd94ad68c4a5ecb77e4 /xmloff | |
parent | cd202a1cdb73fee4be460f07bb36154ee4e945f0 (diff) |
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@redhat.com>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/forms/elementimport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 |