diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-03-20 11:37:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-03-20 12:57:34 +0000 |
commit | 55a40209072bac2526e74d5be7dd7be5ccd2c175 (patch) | |
tree | 3dd0257a893fcd6ff16ab164608b952f65041a94 /sw | |
parent | a92129ec175a1362e61a474cf64992f283db74b4 (diff) |
remove ToDouble/ToFloat
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/html/parcss1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/parcss1.cxx b/sw/source/filter/html/parcss1.cxx index feb6c1851718..67f519da5885 100644 --- a/sw/source/filter/html/parcss1.cxx +++ b/sw/source/filter/html/parcss1.cxx @@ -360,7 +360,7 @@ CSS1Token CSS1Parser::GetNextToken() !IsEOF() ); aToken += String(sTmpBuffer.makeStringAndClear()); - nValue = aToken.ToDouble(); + nValue = rtl::OUString(aToken).toDouble(); // White Space ueberlesen while( ( ' ' == cNextCh || |