diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-01 15:45:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-01 15:45:52 +0200 |
commit | e50ef195bc95f3f410119f623928382cb88b45d2 (patch) | |
tree | 0897c005806c84d7e2add9f4a2d407ff4fe911a5 /lotuswordpro | |
parent | 363e39d63621b6c7017854ca5bb2f7668bb35846 (diff) |
New loplugin:stringconcat
Change-Id: Id7c517fb37bc28797c45fc0dde83e866f2aa4aac
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/xfilter/xfimagestyle.cxx | 2 | ||||
-rw-r--r-- | lotuswordpro/source/filter/xfilter/xfshadow.cxx | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfimagestyle.cxx b/lotuswordpro/source/filter/xfilter/xfimagestyle.cxx index 4cdfd2f7daf5..63097ffd5b65 100644 --- a/lotuswordpro/source/filter/xfilter/xfimagestyle.cxx +++ b/lotuswordpro/source/filter/xfilter/xfimagestyle.cxx @@ -193,7 +193,7 @@ void XFImageStyle::ToXml(IXFStream *pStrm) OUString clip = "rect(" + OUString::number(m_fClipTop) + "cm " + OUString::number(m_fClipRight) + "cm " + OUString::number(m_fClipBottom) + "cm " + - OUString::number(m_fClipLeft) + "cm" + ")"; + OUString::number(m_fClipLeft) + "cm)"; pAttrList->AddAttribute("fo:clip",clip); } diff --git a/lotuswordpro/source/filter/xfilter/xfshadow.cxx b/lotuswordpro/source/filter/xfilter/xfshadow.cxx index 73b53748d653..851530b760fa 100644 --- a/lotuswordpro/source/filter/xfilter/xfshadow.cxx +++ b/lotuswordpro/source/filter/xfilter/xfshadow.cxx @@ -73,16 +73,16 @@ OUString XFShadow::ToString() switch(m_ePosition) { case enumXFShadowRightBottom: - buf = m_aColor.ToString() + " " + strOff + "cm" + " " + strOff + "cm"; + buf = m_aColor.ToString() + " " + strOff + "cm " + strOff + "cm"; break; case enumXFShadowRightTop: - buf = m_aColor.ToString() + " " + strOff + "cm" + " -" + strOff + "cm"; + buf = m_aColor.ToString() + " " + strOff + "cm -" + strOff + "cm"; break; case enumXFShadowLeftBottom: - buf = m_aColor.ToString() + " -" + strOff + "cm" + " " + strOff + "cm"; + buf = m_aColor.ToString() + " -" + strOff + "cm " + strOff + "cm"; break; case enumXFShadowLeftTop: - buf = m_aColor.ToString() + " -" + strOff + "cm" + " -" + strOff + "cm"; + buf = m_aColor.ToString() + " -" + strOff + "cm -" + strOff + "cm"; break; default: buf = m_aColor.ToString(); |