User: hr Date: 06/06/19 18:09:23 Modified: /dba/connectivity/source/drivers/adabas/ BIndexes.cxx
Log: INTEGRATION: CWS warnings01 (1.20.30); FILE MERGED 2006/06/08 09:46:17 fs 1.20.30.3: #136883# renaming getMetaData was a bad idea - it's a overridden virtual method 2005/11/21 10:07:41 fs 1.20.30.2: #i57457# warning-free code on unx* 2005/11/16 12:58:49 fs 1.20.30.1: #i57457# warning free code File Changes: Directory: /dba/connectivity/source/drivers/adabas/ =================================================== File [changed]: BIndexes.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/adabas/BIndexes.cxx?r1=1.20&r2=1.21 Delta lines: +4 -4 ------------------- --- BIndexes.cxx 8 Sep 2005 05:22:13 -0000 1.20 +++ BIndexes.cxx 20 Jun 2006 01:09:21 -0000 1.21 @@ -91,7 +91,7 @@ aName = _rName; - Reference< XResultSet > xResult = m_pTable->getConnection()->getMetaData()->getIndexInfo(Any(), + Reference< XResultSet > xResult = m_pTable->getMetaData()->getIndexInfo(Any(), m_pTable->getSchema(),m_pTable->getTableName(),sal_False,sal_False); sdbcx::ObjectType xRet = NULL; @@ -142,7 +142,7 @@ if(!m_pTable->isNew()) { ::rtl::OUString aSql = ::rtl::OUString::createFromAscii("CREATE "); - ::rtl::OUString aQuote = m_pTable->getConnection()->getMetaData()->getIdentifierQuoteString( ); + ::rtl::OUString aQuote = m_pTable->getMetaData()->getIdentifierQuoteString( ); const ::rtl::OUString& sDot = OAdabasCatalog::getDot(); if(getBOOL(descriptor->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISUNIQUE)))) @@ -200,7 +200,7 @@ } // ------------------------------------------------------------------------- // XDrop -void OIndexes::dropObject(sal_Int32 _nPos,const ::rtl::OUString _sElementName) +void OIndexes::dropObject(sal_Int32 /*_nPos*/,const ::rtl::OUString _sElementName) { if(!m_pTable->isNew()) { @@ -210,7 +210,7 @@ aName = _sElementName.copy(nLen+1); ::rtl::OUString aSql = ::rtl::OUString::createFromAscii("DROP INDEX "); - ::rtl::OUString aQuote = m_pTable->getConnection()->getMetaData()->getIdentifierQuoteString( ); + ::rtl::OUString aQuote = m_pTable->getMetaData()->getIdentifierQuoteString( ); const ::rtl::OUString& sDot = OAdabasCatalog::getDot(); if (aSchema.getLength()) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
