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 /vcl | |
parent | a92129ec175a1362e61a474cf64992f283db74b4 (diff) |
remove ToDouble/ToFloat
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/field.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/field.cxx b/vcl/source/control/field.cxx index bcb676d37ba5..1a880eb3335b 100644 --- a/vcl/source/control/field.cxx +++ b/vcl/source/control/field.cxx @@ -205,7 +205,7 @@ static sal_Bool ImplNumericGetValue( const XubString& rStr, double& rValue, aStr += aStr2; // Bereichsueberpruefung - double nValue = aStr.ToDouble(); + double nValue = rtl::OUString(aStr).toDouble(); if ( bRound ) { if ( !bNegative ) |