diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-01-15 12:32:48 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-01-15 12:32:48 +0000 |
commit | 02b5c60e797e5da4ac49a8e6a3fa7fd7f23657de (patch) | |
tree | 6ac1196d19ee2605a856c92b01ac26b7cc8ee026 /connectivity | |
parent | de1d0de2f1ecea306e584e1b356ae1a913f2df40 (diff) |
INTEGRATION: CWS dba22b (1.10.50); FILE MERGED
2006/12/05 09:31:47 fs 1.10.50.1: #i72252# isDataSourcePropertyEnabled -> getBooleanDataSourceSetting
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/commontools/TIndexes.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/commontools/TIndexes.cxx b/connectivity/source/commontools/TIndexes.cxx index c322e6497d38..b0a72f0b6278 100644 --- a/connectivity/source/commontools/TIndexes.cxx +++ b/connectivity/source/commontools/TIndexes.cxx @@ -4,9 +4,9 @@ * * $RCSfile: TIndexes.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: obo $ $Date: 2006-09-17 02:00:00 $ + * last change: $Author: vg $ $Date: 2007-01-15 13:32:48 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -186,7 +186,7 @@ sdbcx::ObjectType OIndexesHelper::appendObject( const ::rtl::OUString& _rForName Reference<XColumnsSupplier> xColumnSup(descriptor,UNO_QUERY); Reference<XIndexAccess> xColumns(xColumnSup->getColumns(),UNO_QUERY); Reference< XPropertySet > xColProp; - sal_Bool bAddIndexAppendix = ::dbtools::isDataSourcePropertyEnabled(m_pTable->getConnection(),::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("AddIndexAppendix")),sal_True); + sal_Bool bAddIndexAppendix = ::dbtools::getBooleanDataSourceSetting( m_pTable->getConnection(), "AddIndexAppendix" ); sal_Int32 nCount = xColumns->getCount(); for(sal_Int32 i = 0 ; i < nCount; ++i) { |