summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-23 15:10:31 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-23 15:10:48 +0200
commit812d125a5421a0dc2e99aa75c6059f5de588c281 (patch)
tree3e1e8b6e05eeae870472ffa3d860f02d520b82bb /connectivity
parent870a7ee60ab01246ad8d9beae5705f59c6b73cbf (diff)
loplugin:staticcall
Change-Id: I7dfe5b8f6d87db5f0f70bd16e45c4d0bd4a72da2
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/evoab2/NStatement.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/evoab2/NStatement.cxx b/connectivity/source/drivers/evoab2/NStatement.cxx
index fa7040cc16a1..c82418890572 100644
--- a/connectivity/source/drivers/evoab2/NStatement.cxx
+++ b/connectivity/source/drivers/evoab2/NStatement.cxx
@@ -421,14 +421,14 @@ OUString OCommonStatement::getTableName()
const OSQLParseNode *pSelectStmnt = m_aSQLIterator.getParseTree();
const OSQLParseNode *pAllTableNames = pSelectStmnt->getChild( 3 )->getChild( 0 )->getChild( 1 );
- if( m_aSQLIterator.isTableNode( pAllTableNames->getChild( 0 ) ) )
+ if( OSQLParseTreeIterator::isTableNode( pAllTableNames->getChild( 0 ) ) )
OSQLParseNode::getTableComponents( pAllTableNames->getChild( 0 ),
aCatalog,aSchema, aTableName,NULL );
else if( SQL_ISRULE( pAllTableNames->getChild( 0 ), table_ref ) )
{
OSQLParseNode *pNodeForTableName = pAllTableNames->getChild( 0 )->getChild( 0 );
- if( m_aSQLIterator.isTableNode( pNodeForTableName ) )
+ if( OSQLParseTreeIterator::isTableNode( pNodeForTableName ) )
{
aTableName = OSQLParseNode::getTableRange(pAllTableNames->getChild( 0 ));
if( !aTableName.getLength() )