summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/CRowSetDataColumn.hxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2000-11-03 13:32:31 +0000
committerOcke Janssen <oj@openoffice.org>2000-11-03 13:32:31 +0000
commit4eead561b0a61c9fbe27b2d5d4e20cf10d1253fd (patch)
treeff1c8917b3d89062c7bc556d9cc6a52e3f44cf07 /dbaccess/source/core/api/CRowSetDataColumn.hxx
parent253299012dc5eca101611c87ab8b4e170cb8b65a (diff)
some problems with refcount resolved
Diffstat (limited to 'dbaccess/source/core/api/CRowSetDataColumn.hxx')
-rw-r--r--dbaccess/source/core/api/CRowSetDataColumn.hxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/dbaccess/source/core/api/CRowSetDataColumn.hxx b/dbaccess/source/core/api/CRowSetDataColumn.hxx
index 164a65ea33e6..898ef625e8e2 100644
--- a/dbaccess/source/core/api/CRowSetDataColumn.hxx
+++ b/dbaccess/source/core/api/CRowSetDataColumn.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: CRowSetDataColumn.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: oj $ $Date: 2000-10-17 10:18:12 $
+ * last change: $Author: oj $ $Date: 2000-11-03 14:32:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -121,7 +121,9 @@ namespace dbaccess
// -------------------------------------------------------------------------
typedef connectivity::ORefVector< ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> >
ORowSetDataColumns_COLLECTION;
- class ORowSetDataColumns : public connectivity::sdbcx::OCollection
+
+ typedef connectivity::sdbcx::OCollection ORowSetDataColumns_BASE;
+ class ORowSetDataColumns : public ORowSetDataColumns_BASE
{
ORowSetDataColumns_COLLECTION m_aColumns;
protected:
@@ -143,6 +145,8 @@ namespace dbaccess
{}
~ORowSetDataColumns()
{}
+ // only the name is identical to ::cppu::OComponentHelper
+ virtual void SAL_CALL disposing(void);
};
}