summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Lepage <pierrelepage3@gmail.com>2016-11-05 14:52:44 -0400
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-30 06:42:48 +0000
commit379b7ffb68bed5bc376a91032a781be147a6eff1 (patch)
tree80dce2b9462a1e117cad14272a288498be6db449
parent4c5224a29fc11125bc845624a0ffe470416b791c (diff)
tdf#80731 Closing parenthesis is now detected (Mid statement and functions).
Change-Id: I5efdb6c3ce71148672a8b76d3f1cc87b0fe04994 Reviewed-on: https://gerrit.libreoffice.org/30593 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--basic/source/comp/exprtree.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/basic/source/comp/exprtree.cxx b/basic/source/comp/exprtree.cxx
index e7a2210ada0c..008976f1a7d6 100644
--- a/basic/source/comp/exprtree.cxx
+++ b/basic/source/comp/exprtree.cxx
@@ -1055,6 +1055,11 @@ SbiExprListPtr SbiExprList::ParseParameters( SbiParser* pParser, bool bStandalon
{
if( ( pExprList->bBracket && eTok == RPAREN ) || SbiTokenizer::IsEoln( eTok ) )
{
+ if ( SbiTokenizer::IsEoln( eTok ) && pExprList->bBracket)
+ {
+ pParser->Error( ERRCODE_BASIC_EXPECTED, RPAREN );
+ pExprList->bError = true;
+ }
break;
}
pParser->Error( pExprList->bBracket ? ERRCODE_BASIC_BAD_BRACKETS : ERRCODE_BASIC_EXPECTED, COMMA );