summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-03-15 07:02:11 +0000
committerFrank Schönheit <fs@openoffice.org>2001-03-15 07:02:11 +0000
commit466b2ac0e4e6e925713f073ac4e48ac67acf287f (patch)
tree1600c7a0f915d8b05d9c26b5929528250e9e545d /connectivity
parentbeb7f694a8faff456d00e40c60d05d7751fbaf48 (diff)
added a new ctor
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/adabas/BIndex.cxx11
-rw-r--r--connectivity/source/inc/adabas/BIndex.hxx5
2 files changed, 12 insertions, 4 deletions
diff --git a/connectivity/source/drivers/adabas/BIndex.cxx b/connectivity/source/drivers/adabas/BIndex.cxx
index 49c2f033abf9..555ee2f2e584 100644
--- a/connectivity/source/drivers/adabas/BIndex.cxx
+++ b/connectivity/source/drivers/adabas/BIndex.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: BIndex.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: fs $ $Date: 2001-03-08 13:14:50 $
+ * last change: $Author: fs $ $Date: 2001-03-15 08:00:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -100,6 +100,13 @@ OAdabasIndex::OAdabasIndex( OAdabasTable* _pTable,
refreshColumns();
}
// -------------------------------------------------------------------------
+OAdabasIndex::OAdabasIndex(OAdabasTable* _pTable)
+ : connectivity::sdbcx::OIndex(sal_True)
+ ,m_pTable(_pTable)
+{
+ construct();
+}
+// -----------------------------------------------------------------------------
void OAdabasIndex::refreshColumns()
{
diff --git a/connectivity/source/inc/adabas/BIndex.hxx b/connectivity/source/inc/adabas/BIndex.hxx
index c2f0b757e622..04c5c1109631 100644
--- a/connectivity/source/inc/adabas/BIndex.hxx
+++ b/connectivity/source/inc/adabas/BIndex.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: BIndex.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2000-10-30 07:32:12 $
+ * last change: $Author: fs $ $Date: 2001-03-15 08:02:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,6 +80,7 @@ namespace connectivity
public:
virtual void refreshColumns();
public:
+ OAdabasIndex(OAdabasTable* _pTable);
OAdabasIndex( OAdabasTable* _pTable,
const ::rtl::OUString& _Name,
const ::rtl::OUString& _Catalog,