summaryrefslogtreecommitdiff
path: root/basic/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-05 16:30:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-06 08:31:52 +0200
commit13341ffa49d58f313a05edae4f4f04c215658e9f (patch)
tree8e2e46f6a83f5e0fa1b09ea160b152f53be5b0ac /basic/source
parenta1ead1a0281a369087f1b2cce09431542c29bece (diff)
teach unnecessaryparen plugin about other kinds of statements
i.e. do / while / switch Change-Id: Id0985015cc425557f9984734701d56466f8a6088 Reviewed-on: https://gerrit.libreoffice.org/39601 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic/source')
-rw-r--r--basic/source/sbx/sbxcurr.cxx2
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 )