diff options
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/sbx/sbxcurr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxcurr.cxx b/basic/source/sbx/sbxcurr.cxx index e4d525bd794e..70856e7b602c 100644 --- a/basic/source/sbx/sbxcurr.cxx +++ b/basic/source/sbx/sbxcurr.cxx @@ -110,7 +110,7 @@ static sal_Int64 ImpStringToCurrency( const OUString &rStr ) if ( *p == '-' || *p == '+' ) sNormalisedNumString.append( *p ); - while ( ( *p >= '0' && *p <= '9' ) ) + while ( *p >= '0' && *p <= '9' ) { sNormalisedNumString.append( *p++ ); // #TODO in vba mode set runtime error when a space ( or other ) |