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

Modified:
 /dba/connectivity/source/drivers/calc/
  CDatabaseMetaData.cxx

Log:
 INTEGRATION: CWS warnings01 (1.13.30); FILE MERGED
 2005/11/16 12:58:53 fs 1.13.30.1: #i57457# warning free code

File Changes:

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

File [changed]: CDatabaseMetaData.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/calc/CDatabaseMetaData.cxx?r1=1.13&r2=1.14
Delta lines:  +16 -16
---------------------
--- CDatabaseMetaData.cxx       8 Sep 2005 05:34:37 -0000       1.13
+++ CDatabaseMetaData.cxx       20 Jun 2006 01:18:00 -0000      1.14
@@ -198,8 +198,8 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
 
@@ -212,7 +212,7 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
@@ -311,7 +311,7 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
 
@@ -324,7 +324,7 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
 
@@ -337,7 +337,7 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
 
@@ -350,7 +350,7 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
 
@@ -363,8 +363,8 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
 
@@ -385,8 +385,8 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
 
@@ -399,9 +399,9 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::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 );
 
@@ -546,8 +546,8 @@
 // -------------------------------------------------------------------------
 
 Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::getTables(
-        const Any& catalog, const ::rtl::OUString& schemaPattern,
-        const ::rtl::OUString& tableNamePattern, const Sequence< 
::rtl::OUString >& types )
+        const Any& /*catalog*/, const ::rtl::OUString& /*schemaPattern*/,
+        const ::rtl::OUString& /*tableNamePattern*/, const Sequence< 
::rtl::OUString >& types )
         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