diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-06-27 07:24:25 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-06-27 07:24:25 +0000 |
commit | 3fe722d7b7d84103236ccd0fda2d27952328f6ec (patch) | |
tree | 41d8b9bfcf187391213b90a31aa6fe79816f7300 /connectivity/source | |
parent | 88eb2419352f354e483c34733b4e12a7f40a2cf4 (diff) |
INTEGRATION: CWS hslqdb3 (1.2.22); FILE MERGED
2005/05/27 08:11:51 oj 1.2.22.1: #i45749# fix for read-only storage
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/hsqldb/HCatalog.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/connectivity/source/drivers/hsqldb/HCatalog.cxx b/connectivity/source/drivers/hsqldb/HCatalog.cxx index 7c4d255aac0a..625945ccba49 100644 --- a/connectivity/source/drivers/hsqldb/HCatalog.cxx +++ b/connectivity/source/drivers/hsqldb/HCatalog.cxx @@ -2,9 +2,9 @@ * * $RCSfile: HCatalog.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2005-04-06 10:34:47 $ + * last change: $Author: rt $ $Date: 2005-06-27 08:24:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -113,12 +113,10 @@ void OHCatalog::refreshTables() TStringVector aVector; static const ::rtl::OUString s_sTableTypeView(RTL_CONSTASCII_USTRINGPARAM("VIEW")); static const ::rtl::OUString s_sTableTypeTable(RTL_CONSTASCII_USTRINGPARAM("TABLE")); - static const ::rtl::OUString s_sAll(RTL_CONSTASCII_USTRINGPARAM("%")); - Sequence< ::rtl::OUString > sTableTypes(3); + Sequence< ::rtl::OUString > sTableTypes(2); sTableTypes[0] = s_sTableTypeView; sTableTypes[1] = s_sTableTypeTable; - sTableTypes[2] = s_sAll; // just to be sure to include anything else .... refreshObjects(sTableTypes,aVector); |