summaryrefslogtreecommitdiff
path: root/connectivity/source/sdbcx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/sdbcx')
-rw-r--r--connectivity/source/sdbcx/VIndex.cxx4
-rw-r--r--connectivity/source/sdbcx/VIndexColumn.cxx9
-rw-r--r--connectivity/source/sdbcx/VKey.cxx2
-rw-r--r--connectivity/source/sdbcx/VKeyColumn.cxx9
-rw-r--r--connectivity/source/sdbcx/VView.cxx3
5 files changed, 10 insertions, 17 deletions
diff --git a/connectivity/source/sdbcx/VIndex.cxx b/connectivity/source/sdbcx/VIndex.cxx
index 3981e2670382..a0dacf137503 100644
--- a/connectivity/source/sdbcx/VIndex.cxx
+++ b/connectivity/source/sdbcx/VIndex.cxx
@@ -61,7 +61,7 @@ sal_Bool SAL_CALL OIndex::supportsService( const OUString& _rServiceName ) throw
return cppu::supportsService(this, _rServiceName);
}
-OIndex::OIndex(bool _bCase) : ODescriptor_BASE(m_aMutex)
+OIndex::OIndex(bool _bCase) : ODescriptor_BASE(m_aMutex)
, ODescriptor(ODescriptor_BASE::rBHelper,_bCase,true)
,m_IsUnique(false)
,m_IsPrimaryKeyIndex(false)
@@ -76,7 +76,7 @@ OIndex::OIndex( const OUString& Name,
bool _isPrimaryKeyIndex,
bool _isClustered,
bool _bCase) : ODescriptor_BASE(m_aMutex)
- ,ODescriptor(ODescriptor_BASE::rBHelper,_bCase)
+ ,ODescriptor(ODescriptor_BASE::rBHelper, _bCase)
,m_Catalog(Catalog)
,m_IsUnique(_isUnique)
,m_IsPrimaryKeyIndex(_isPrimaryKeyIndex)
diff --git a/connectivity/source/sdbcx/VIndexColumn.cxx b/connectivity/source/sdbcx/VIndexColumn.cxx
index 2cf762a9d49e..115382acf1a0 100644
--- a/connectivity/source/sdbcx/VIndexColumn.cxx
+++ b/connectivity/source/sdbcx/VIndexColumn.cxx
@@ -63,9 +63,6 @@ OIndexColumn::OIndexColumn( bool IsAscending,
sal_Int32 Precision,
sal_Int32 Scale,
sal_Int32 Type,
- bool IsAutoIncrement,
- bool IsRowVersion,
- bool IsCurrency,
bool _bCase,
const OUString& CatalogName,
const OUString& SchemaName,
@@ -78,9 +75,9 @@ OIndexColumn::OIndexColumn( bool IsAscending,
Precision,
Scale,
Type,
- IsAutoIncrement,
- IsRowVersion,
- IsCurrency,
+ false/*IsAutoIncrement*/,
+ false/*IsRowVersion*/,
+ false/*IsCurrency*/,
_bCase,
CatalogName,
SchemaName,
diff --git a/connectivity/source/sdbcx/VKey.cxx b/connectivity/source/sdbcx/VKey.cxx
index ce448f78cd94..8eaf5e784792 100644
--- a/connectivity/source/sdbcx/VKey.cxx
+++ b/connectivity/source/sdbcx/VKey.cxx
@@ -68,7 +68,7 @@ OKey::OKey(bool _bCase) : ODescriptor_BASE(m_aMutex)
OKey::OKey(const OUString& Name,const std::shared_ptr<KeyProperties>& _rProps, bool _bCase)
: ODescriptor_BASE(m_aMutex)
- ,ODescriptor(ODescriptor_BASE::rBHelper,_bCase)
+ ,ODescriptor(ODescriptor_BASE::rBHelper, _bCase)
,m_aProps(_rProps)
,m_pColumns(nullptr)
{
diff --git a/connectivity/source/sdbcx/VKeyColumn.cxx b/connectivity/source/sdbcx/VKeyColumn.cxx
index 7ebc912e3815..7693717178db 100644
--- a/connectivity/source/sdbcx/VKeyColumn.cxx
+++ b/connectivity/source/sdbcx/VKeyColumn.cxx
@@ -63,9 +63,6 @@ OKeyColumn::OKeyColumn( const OUString& ReferencedColumn,
sal_Int32 Precision,
sal_Int32 Scale,
sal_Int32 Type,
- bool IsAutoIncrement,
- bool IsRowVersion,
- bool IsCurrency,
bool _bCase,
const OUString& CatalogName,
const OUString& SchemaName,
@@ -78,9 +75,9 @@ OKeyColumn::OKeyColumn( const OUString& ReferencedColumn,
Precision,
Scale,
Type,
- IsAutoIncrement,
- IsRowVersion,
- IsCurrency,
+ false/*IsAutoIncrement*/,
+ false/*IsRowVersion*/,
+ false/*IsCurrency*/,
_bCase,
CatalogName,
SchemaName,
diff --git a/connectivity/source/sdbcx/VView.cxx b/connectivity/source/sdbcx/VView.cxx
index 8bdbca929ff2..673b11d11f08 100644
--- a/connectivity/source/sdbcx/VView.cxx
+++ b/connectivity/source/sdbcx/VView.cxx
@@ -37,14 +37,13 @@ IMPLEMENT_SERVICE_INFO(OView,"com.sun.star.sdbcx.VView","com.sun.star.sdbcx.View
OView::OView(bool _bCase,
const OUString& Name,
const css::uno::Reference< css::sdbc::XDatabaseMetaData >& _xMetaData,
- sal_Int32 CheckOption,
const OUString& Command,
const OUString& SchemaName,
const OUString& CatalogName) : ODescriptor(::comphelper::OMutexAndBroadcastHelper::m_aBHelper,_bCase)
,m_CatalogName(CatalogName)
,m_SchemaName(SchemaName)
,m_Command(Command)
- ,m_CheckOption(CheckOption)
+ ,m_CheckOption(0)
,m_xMetaData(_xMetaData)
{