diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-29 09:29:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-29 12:56:28 +0200 |
commit | ca145c7364509cfdabb76472b503a2a5842c2b60 (patch) | |
tree | a0226891fbb69d876c808d1cc31860cde501023f /l10ntools | |
parent | 0bebf37bac076a56801ef7d1c113f729b12b9f46 (diff) |
remove some unnecessary OString constructor calls
Change-Id: I11358f17770cacb2a33011797f4be82dc02340b7
Reviewed-on: https://gerrit.libreoffice.org/38130
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/xmlparse.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx index 5b0fcb88ff48..e2761ace545a 100644 --- a/l10ntools/source/xmlparse.cxx +++ b/l10ntools/source/xmlparse.cxx @@ -933,7 +933,7 @@ XMLFile *SimpleXMLParser::Execute( const OString &rFileName, XMLFile* pXMLFileIn if ( !pXMLFile->GetName().isEmpty()) m_aErrorInformation.m_sMessage += pXMLFile->GetName(); else - m_aErrorInformation.m_sMessage += OString( "XML-File ("); + m_aErrorInformation.m_sMessage += "XML-File ("; m_aErrorInformation.m_sMessage += OString::number(sal::static_int_cast< sal_Int64 >(m_aErrorInformation.m_nLine)) + "," + |