User: hr Date: 06/06/19 19:47:05 Modified: /dba/dbaccess/source/core/inc/ definitioncolumn.hxx
Log: INTEGRATION: CWS warnings01 (1.4.50); FILE MERGED 2006/03/24 15:35:54 fs 1.4.50.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro) File Changes: Directory: /dba/dbaccess/source/core/inc/ ========================================= File [changed]: definitioncolumn.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/inc/definitioncolumn.hxx?r1=1.4&r2=1.5 Delta lines: +21 -6 -------------------- --- definitioncolumn.hxx 8 Sep 2005 13:36:39 -0000 1.4 +++ definitioncolumn.hxx 20 Jun 2006 02:47:02 -0000 1.5 @@ -133,6 +133,9 @@ protected: // XUnoTunnel virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException); + + protected: + using OColumn::getFastPropertyValue; }; /** @@ -199,6 +202,9 @@ virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException); // Helper // sal_Int32 getColumnTypeID() const {return m_nColTypeID;} + + protected: + using OColumn::getFastPropertyValue; }; /** @@ -244,6 +250,9 @@ protected: // XUnoTunnel virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException); + + protected: + using OColumnWrapper::getFastPropertyValue; }; /** @@ -274,7 +283,7 @@ * describes all properties for a columns of an index. */ class OIndexColumnWrapper : public OColumnWrapper, - public ::comphelper::OIdPropertyArrayUsageHelper < OIndexColumnWrapper > + public ::comphelper::OPropertyArrayUsageHelper < OIndexColumnWrapper > { protected: // <properties> @@ -292,21 +301,24 @@ virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException); - // OIdPropertyArrayUsageHelper + // OPropertyArrayUsageHelper virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper(); - virtual ::cppu::IPropertyArrayHelper* createArrayHelper(sal_Int32 nId) const; + virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const; virtual void SAL_CALL getFastPropertyValue( ::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const; + + protected: + using OColumnWrapper::getFastPropertyValue; }; /** * describes all properties for a columns of an key column. */ class OKeyColumnWrapper : public OColumnWrapper, - public ::comphelper::OIdPropertyArrayUsageHelper < OKeyColumnWrapper > + public ::comphelper::OPropertyArrayUsageHelper < OKeyColumnWrapper > { protected: // <properties> @@ -324,14 +336,17 @@ virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException); - // OIdPropertyArrayUsageHelper + // OPropertyArrayUsageHelper virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper(); - virtual ::cppu::IPropertyArrayHelper* createArrayHelper(sal_Int32 nId) const; + virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const; virtual void SAL_CALL getFastPropertyValue( ::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const; + + protected: + using OColumnWrapper::getFastPropertyValue; }; } #endif // _DBACORE_DEFINITIONCOLUMN_HXX_ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
