connectivity/source/parse/sqliterator.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 81b9821b65fb5721a2ca093fcec6a53fa01b9ba7
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Wed Apr 10 16:05:00 2019 +0000
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Thu Apr 18 10:02:38 2019 +0200

    Fix typo
    
    Change-Id: Ief0343a128ae45ee62f7965a6ea77b2dcbd0ae49
    Reviewed-on: https://gerrit.libreoffice.org/70911
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/connectivity/source/parse/sqliterator.cxx 
b/connectivity/source/parse/sqliterator.cxx
index eaec3f9ef6b1..3be9ec8b570e 100644
--- a/connectivity/source/parse/sqliterator.cxx
+++ b/connectivity/source/parse/sqliterator.cxx
@@ -574,7 +574,7 @@ const OSQLParseNode* OSQLParseTreeIterator::getTableNode( 
OSQLTables& _rTables,
                 if ( SQL_ISRULE( pQueryExpression, select_statement ) )
                 {
                     getSelect_statement( *m_pImpl->m_pSubTables, 
pQueryExpression );
-                    // TODO: now, we need to setup a OSQLTable from 
pQueryExpression in some way
+                    // TODO: now, we need to setup an OSQLTable from 
pQueryExpression in some way
                     //       and stick it in _rTables[rTableRange]. Probably 
fake it by
                     //       setting up a full OSQLParseTreeIterator on 
pQueryExpression
                     //       and using its m_aSelectColumns
@@ -720,7 +720,7 @@ namespace
             else
                 _out_rColumnName = _pColumnRef->getChild(0)->getTokenValue();
 
-            // look up the column in the select column, to find an possible 
alias
+            // look up the column in the select column, to find a possible 
alias
             if ( _pSelectColumns )
             {
                 for (const Reference< XPropertySet >& xColumn : 
_pSelectColumns->get())
@@ -1837,7 +1837,7 @@ const OSQLParseNode* 
OSQLParseTreeIterator::getOrderTree() const
     OSL_ENSURE(pTableExp->count() == 
TABLE_EXPRESSION_CHILD_COUNT,"OSQLParseTreeIterator: error in parse tree!");
 
     pOrderClause = pTableExp->getChild(ORDER_BY_CHILD_POS);
-    // If it is a order_by, it must not be empty
+    // If it is an order_by, it must not be empty
     if(pOrderClause->count() != 3)
         pOrderClause = nullptr;
     return pOrderClause;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to