User: hr      
Date: 06/06/19 18:19:36

Modified:
 /dba/connectivity/source/drivers/dbase/
  DDatabaseMetaData.cxx

Log:
 INTEGRATION: CWS warnings01 (1.30.30); FILE MERGED
 2005/11/16 12:58:54 fs 1.30.30.2: #i57457# warning free code
 2005/11/07 14:43:12 fs 1.30.30.1: #i57457# warning-free code

File Changes:

Directory: /dba/connectivity/source/drivers/dbase/
==================================================

File [changed]: DDatabaseMetaData.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx?r1=1.30&r2=1.31
Delta lines:  +17 -17
---------------------
--- DDatabaseMetaData.cxx       8 Sep 2005 05:37:44 -0000       1.30
+++ DDatabaseMetaData.cxx       20 Jun 2006 01:19:34 -0000      1.31
@@ -176,8 +176,8 @@
 }
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getColumnPrivileges(
-       const Any& catalog, const ::rtl::OUString& schema, const 
::rtl::OUString& table,
-        const ::rtl::OUString& columnNamePattern ) throw(SQLException, 
RuntimeException)
+       const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const 
::rtl::OUString& /*table*/,
+        const ::rtl::OUString& /*columnNamePattern*/ ) throw(SQLException, 
RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
 
@@ -189,7 +189,7 @@
 
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getColumns(
-       const Any& catalog, const ::rtl::OUString& schemaPattern, const 
::rtl::OUString& tableNamePattern,
+       const Any& /*catalog*/, const ::rtl::OUString& /*schemaPattern*/, const 
::rtl::OUString& tableNamePattern,
         const ::rtl::OUString& columnNamePattern ) throw(SQLException, 
RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
@@ -281,7 +281,7 @@
 }
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getVersionColumns(
-        const Any& catalog, const ::rtl::OUString& schema, const 
::rtl::OUString& table ) throw(SQLException, RuntimeException)
+        const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const 
::rtl::OUString& /*table*/ ) throw(SQLException, RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
 
@@ -292,7 +292,7 @@
 }
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getExportedKeys(
-        const Any& catalog, const ::rtl::OUString& schema, const 
::rtl::OUString& table ) throw(SQLException, RuntimeException)
+        const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const 
::rtl::OUString& /*table*/ ) throw(SQLException, RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
 
@@ -303,7 +303,7 @@
 }
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getImportedKeys(
-        const Any& catalog, const ::rtl::OUString& schema, const 
::rtl::OUString& table ) throw(SQLException, RuntimeException)
+        const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const 
::rtl::OUString& /*table*/ ) throw(SQLException, RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
 
@@ -314,7 +314,7 @@
 }
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getPrimaryKeys(
-        const Any& catalog, const ::rtl::OUString& schema, const 
::rtl::OUString& table ) throw(SQLException, RuntimeException)
+        const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const 
::rtl::OUString& /*table*/ ) throw(SQLException, RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
 
@@ -325,8 +325,8 @@
 }
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getIndexInfo(
-       const Any& catalog, const ::rtl::OUString& schema, const 
::rtl::OUString& table,
-        sal_Bool unique, sal_Bool approximate ) throw(SQLException, 
RuntimeException)
+       const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const 
::rtl::OUString& table,
+        sal_Bool unique, sal_Bool /*approximate*/ ) throw(SQLException, 
RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
 
@@ -371,7 +371,7 @@
                Reference< ::com::sun::star::lang::XUnoTunnel> 
xTunnel(xIndex,UNO_QUERY);
                if(xTunnel.is())
                {
-                       ODbaseIndex* pIndex = 
(ODbaseIndex*)xTunnel->getSomething(ODbaseIndex::getUnoTunnelImplementationId());
+                       ODbaseIndex* pIndex = reinterpret_cast< ODbaseIndex* >( 
xTunnel->getSomething(ODbaseIndex::getUnoTunnelImplementationId()) );
                        if(pIndex)
                        {
                                aRow[11] = new 
ORowSetValueDecorator((sal_Int32)pIndex->getHeader().db_maxkeys);
@@ -403,8 +403,8 @@
 }
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getBestRowIdentifier(
-       const Any& catalog, const ::rtl::OUString& schema, const 
::rtl::OUString& table, sal_Int32 scope,
-        sal_Bool nullable ) throw(SQLException, RuntimeException)
+       const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const 
::rtl::OUString& /*table*/, sal_Int32 /*scope*/,
+        sal_Bool /*nullable*/ ) throw(SQLException, RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
 
@@ -415,9 +415,9 @@
 }
 // -------------------------------------------------------------------------
 Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getCrossReference(
-       const Any& primaryCatalog, const ::rtl::OUString& primarySchema,
-       const ::rtl::OUString& primaryTable, const Any& foreignCatalog,
-        const ::rtl::OUString& foreignSchema, const ::rtl::OUString& 
foreignTable ) throw(SQLException, RuntimeException)
+       const Any& /*primaryCatalog*/, const ::rtl::OUString& /*primarySchema*/,
+       const ::rtl::OUString& /*primaryTable*/, const Any& /*foreignCatalog*/,
+        const ::rtl::OUString& /*foreignSchema*/, const ::rtl::OUString& 
/*foreignTable*/ ) throw(SQLException, RuntimeException)
 {
        ::osl::MutexGuard aGuard( m_aMutex );
 




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

Reply via email to