summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/evoab2
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-07-29 14:03:25 +0000
committerKurt Zenker <kz@openoffice.org>2008-07-29 14:03:25 +0000
commit08acefb8c779f60d97b76105fd1b2731848d8d3f (patch)
tree821862bf087d280805995cf6321e183b2333d7ce /connectivity/source/drivers/evoab2
parent0f7a0f750735ca377c69b5200bfebd674f01597f (diff)
#i91025# patch fix build break
Diffstat (limited to 'connectivity/source/drivers/evoab2')
-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 a55e1ef1c5..473c4f9d84 100644
--- a/connectivity/source/drivers/evoab2/NStatement.cxx
+++ b/connectivity/source/drivers/evoab2/NStatement.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: NStatement.cxx,v $
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
* This file is part of OpenOffice.org.
*
@@ -403,7 +403,7 @@ rtl::OUString OStatement_Base::getTableName()
OSQLParseNode *pNodeForTableName = pAllTableNames->getChild( 0 )->getChild( 0 );
if( m_aSQLIterator.isTableNode( pNodeForTableName ) )
{
- aTableName = getTableRange(pAllTableNames->getChild( 0 ));
+ aTableName = OSQLParseNode::getTableRange(pAllTableNames->getChild( 0 ));
if( !aTableName.getLength() )
OSQLParseNode::getTableComponents( pNodeForTableName, aCatalog, aSchema, aTableName);
}