Typo: nCurentPos->nCurrentPos (connectivity/sqliterator)
Change-Id: I6580e81a8a792ff98e1b8594ed79bd77b684b719 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150684 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
parent
06c61d3581
commit
bf770e8603
1 changed files with 3 additions and 3 deletions
|
@ -1216,10 +1216,10 @@ void OSQLParseTreeIterator::traverseSearchCondition(OSQLParseNode const * pSearc
|
|||
OSL_ENSURE(pSearchCondition->count() == 2,"OSQLParseTreeIterator: error in parse tree!");
|
||||
const OSQLParseNode* pPart2 = pSearchCondition->getChild(1);
|
||||
|
||||
sal_Int32 nCurentPos = pPart2->count()-2;
|
||||
sal_Int32 nCurrentPos = pPart2->count()-2;
|
||||
|
||||
OSQLParseNode * pNum_value_exp = pPart2->getChild(nCurentPos);
|
||||
OSQLParseNode * pOptEscape = pPart2->getChild(nCurentPos+1);
|
||||
OSQLParseNode * pNum_value_exp = pPart2->getChild(nCurrentPos);
|
||||
OSQLParseNode * pOptEscape = pPart2->getChild(nCurrentPos+1);
|
||||
|
||||
OSL_ENSURE(pNum_value_exp != nullptr,"OSQLParseTreeIterator: error in parse tree!");
|
||||
OSL_ENSURE(pOptEscape != nullptr,"OSQLParseTreeIterator: error in parse tree!");
|
||||
|
|
Loading…
Reference in a new issue