summaryrefslogtreecommitdiff
path: root/connectivity/source/simpledbt
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-12-13 15:26:26 +0000
committerKurt Zenker <kz@openoffice.org>2006-12-13 15:26:26 +0000
commit4657f6d7c60f22d336d26e3fc15e6caba5633784 (patch)
tree82355a0a907f92baac485a63126877af2a2cd831 /connectivity/source/simpledbt
parent88f503ec77c5c2d7ffae391cbaafd33b2c864a4e (diff)
INTEGRATION: CWS dba22ui (1.5.20); FILE MERGED
2006/12/05 09:46:56 fs 1.5.20.1: copying the fix for #i72252# from CWS dba22b to dba22ui - intended for the latter, but wrongly checked in into the former
Diffstat (limited to 'connectivity/source/simpledbt')
-rw-r--r--connectivity/source/simpledbt/parsenode_s.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/connectivity/source/simpledbt/parsenode_s.cxx b/connectivity/source/simpledbt/parsenode_s.cxx
index 0522edeef04c..ff96ab390e47 100644
--- a/connectivity/source/simpledbt/parsenode_s.cxx
+++ b/connectivity/source/simpledbt/parsenode_s.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: parsenode_s.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 03:13:44 $
+ * last change: $Author: kz $ $Date: 2006-12-13 16:26:26 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -88,17 +88,17 @@ namespace connectivity
}
//----------------------------------------------------------------
- void OSimpleParseNode::parseNodeToStr(::rtl::OUString& _rString, const Reference< XDatabaseMetaData >& _rxMeta,const IParseContext* _pContext) const
+ void OSimpleParseNode::parseNodeToStr(::rtl::OUString& _rString, const Reference< XConnection >& _rxConnection,const IParseContext* _pContext) const
{
- m_pFullNode->parseNodeToStr(_rString, _rxMeta,_pContext);
+ m_pFullNode->parseNodeToStr( _rString, _rxConnection, _pContext );
}
//----------------------------------------------------------------
- void OSimpleParseNode::parseNodeToPredicateStr(::rtl::OUString& _rString, const Reference< XDatabaseMetaData >& _rxMeta,
+ void OSimpleParseNode::parseNodeToPredicateStr(::rtl::OUString& _rString, const Reference< XConnection >& _rxConnection,
const Reference< XNumberFormatter >& _rxFormatter, const Reference< XPropertySet >& _rxField,
const Locale& _rIntl, const sal_Char _cDecSeparator,const IParseContext* _pContext) const
{
- m_pFullNode->parseNodeToPredicateStr(_rString, _rxMeta, _rxFormatter, _rxField, _rIntl, _cDecSeparator,_pContext);
+ m_pFullNode->parseNodeToPredicateStr( _rString, _rxConnection, _rxFormatter, _rxField, _rIntl, _cDecSeparator, _pContext );
}
//........................................................................