User: hr      
Date: 06/06/19 19:10:03

Modified:
 /dba/connectivity/source/sdbcx/
  VColumn.cxx

Log:
 INTEGRATION: CWS warnings01 (1.15.30); FILE MERGED
 2006/06/14 10:56:24 fs 1.15.30.3: #i66367# reverted previous changes related 
to replacing IdPropertyArrayHelper with PropertyArrayHelper - there's a subtle 
difference between both ids ...
 2005/11/16 12:59:31 fs 1.15.30.2: #i57457# warning free code
 2005/11/07 14:44:15 fs 1.15.30.1: #i57457# warning-free code

File Changes:

Directory: /dba/connectivity/source/sdbcx/
==========================================

File [changed]: VColumn.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/sdbcx/VColumn.cxx?r1=1.15&r2=1.16
Delta lines:  +36 -38
---------------------
--- VColumn.cxx 8 Sep 2005 07:42:53 -0000       1.15
+++ VColumn.cxx 20 Jun 2006 02:10:00 -0000      1.16
@@ -87,15 +87,16 @@
        return pSupported != pEnd;
 }
 // -------------------------------------------------------------------------
-OColumn::OColumn(sal_Bool _bCase)  :   OColumnDescriptor_BASE(m_aMutex)
-                                       ,       
ODescriptor(OColumnDescriptor_BASE::rBHelper,_bCase,sal_True)
-                                       ,       m_Precision(0)
-                                       ,       m_Type(0)
-                                       ,       m_Scale(0)
-                                       ,       
m_IsNullable(ColumnValue::NULLABLE)
-                                       ,       m_IsAutoIncrement(sal_False)
-                                       ,       m_IsRowVersion(sal_False)
-                                       ,       m_IsCurrency(sal_False)
+OColumn::OColumn(sal_Bool _bCase)
+    :OColumnDescriptor_BASE(m_aMutex)
+    ,ODescriptor(OColumnDescriptor_BASE::rBHelper,_bCase,sal_True)
+    ,m_IsNullable(ColumnValue::NULLABLE)
+    ,m_Precision(0)
+    ,m_Scale(0)
+    ,m_Type(0)
+    ,m_IsAutoIncrement(sal_False)
+    ,m_IsRowVersion(sal_False)
+    ,m_IsCurrency(sal_False)
 {
        construct();
 }
@@ -111,17 +112,17 @@
                                        sal_Bool                _IsRowVersion,
                                        sal_Bool                _IsCurrency,
                                        sal_Bool                _bCase)
-                       :       OColumnDescriptor_BASE(m_aMutex)
-                       ,       
ODescriptor(OColumnDescriptor_BASE::rBHelper,_bCase)
-                       ,       m_TypeName(_TypeName)
-                       ,       m_DefaultValue(_DefaultValue)
-                       ,       m_Precision(_Precision)
-                       ,       m_Type(_Type)
-                       ,       m_Scale(_Scale)
-                       ,       m_IsNullable(_IsNullable)
-                       ,       m_IsAutoIncrement(_IsAutoIncrement)
-                       ,       m_IsRowVersion(_IsRowVersion)
-                       ,       m_IsCurrency(_IsCurrency)
+    :OColumnDescriptor_BASE(m_aMutex)
+    ,ODescriptor(OColumnDescriptor_BASE::rBHelper,_bCase)
+    ,m_TypeName(_TypeName)
+    ,m_DefaultValue(_DefaultValue)
+    ,m_IsNullable(_IsNullable)
+    ,m_Precision(_Precision)
+    ,m_Scale(_Scale)
+    ,m_Type(_Type)
+    ,m_IsAutoIncrement(_IsAutoIncrement)
+    ,m_IsRowVersion(_IsRowVersion)
+    ,m_IsCurrency(_IsCurrency)
 {
        m_Name = _Name;
 
@@ -132,12 +133,9 @@
 {
 }
 // 
-----------------------------------------------------------------------------
-::cppu::IPropertyArrayHelper* OColumn::createArrayHelper( sal_Int32 _nId) const
+::cppu::IPropertyArrayHelper* OColumn::createArrayHelper( sal_Int32 /*_nId*/ ) 
const
 {
-       ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property > 
aProps;
-       describeProperties(aProps);
-       changePropertyAttributte(aProps);
-       return new ::cppu::OPropertyArrayHelper(aProps);
+    return doCreateArrayHelper();
 }
 // 
-----------------------------------------------------------------------------   
                                                                                
                    
 ::cppu::IPropertyArrayHelper& SAL_CALL OColumn::getInfoHelper()




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to