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
commitb46998a5553150ac320e748fa37d427eb750a4bc (patch)
tree80771c85f30597b83503c8515892d659e342c0ca /connectivity/source/simpledbt
parent6e7eb08ca611ead6019ffa31cf6e6b17e80145a1 (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 cdeadc2a74..fe10cd1c80 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 );
}
//........................................................................