summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xfcolstyle.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-09 00:50:30 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-09 00:50:30 -0600
commit025498dda9c396f5df7d839af1dd65cdc181d1f5 (patch)
treeffd5721ab20891677887e9e428f7e85afd025acd /lotuswordpro/source/filter/xfilter/xfcolstyle.cxx
parent76f279a52fdce1d82ecd5e96e7968821e9ec3007 (diff)
lotuswordpro: use native OUString api rather than a wrapper
Change-Id: I28be9db72d1f3dc678106a9449944b8a6b0ce9a8
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xfcolstyle.cxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfcolstyle.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfcolstyle.cxx b/lotuswordpro/source/filter/xfilter/xfcolstyle.cxx
index 481b28cea75f..9cddf25bbeff 100644
--- a/lotuswordpro/source/filter/xfilter/xfcolstyle.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfcolstyle.cxx
@@ -84,7 +84,7 @@ void XFColStyle::ToXml(IXFStream *pStrm)
pStrm->StartElement( "style:style" );
pAttrList->Clear();
- pAttrList->AddAttribute( "style:column-width", DoubleToOUString(m_fWidth) + "cm" );
+ pAttrList->AddAttribute( "style:column-width", OUString::number(m_fWidth) + "cm" );
pStrm->StartElement( "style:properties" );
pStrm->EndElement( "style:properties" );