summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-21 14:00:39 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-21 14:00:39 +0000
commitabd3c14fe2260e8fe2f1d60db49bcc6774328788 (patch)
tree76afb88dbfb84bf55e54d5a2bdcd585d897a8f28
parent4ef3bbf4d7ba9b9bdda45d3042ef98046aa0b6de (diff)
INTEGRATION: CWS dba24c (1.6.132); FILE MERGED
2007/09/13 11:44:19 fs 1.6.132.1: #i49183# propagate the XConnection to the single View objects
-rw-r--r--connectivity/source/drivers/hsqldb/HCatalog.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/connectivity/source/drivers/hsqldb/HCatalog.cxx b/connectivity/source/drivers/hsqldb/HCatalog.cxx
index 3ab3ba95a5bd..4f03cecd03c2 100644
--- a/connectivity/source/drivers/hsqldb/HCatalog.cxx
+++ b/connectivity/source/drivers/hsqldb/HCatalog.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: HCatalog.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 02:39:41 $
+ * last change: $Author: ihi $ $Date: 2007-11-21 15:00:39 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -132,7 +132,7 @@ void OHCatalog::refreshViews()
if ( m_pViews )
m_pViews->reFill(aVector);
else
- m_pViews = new OViews(m_xMetaData,*this,m_aMutex,aVector);
+ m_pViews = new HViews( m_xConnection, *this, m_aMutex, aVector );
}
// -------------------------------------------------------------------------
void OHCatalog::refreshGroups()
@@ -165,7 +165,6 @@ Any SAL_CALL OHCatalog::queryInterface( const Type & rType ) throw(RuntimeExcept
if ( rType == ::getCppuType((const Reference<XGroupsSupplier>*)0) )
return Any();
-
return OCatalog::queryInterface(rType);
}
// -----------------------------------------------------------------------------