User: kz Date: 2006/07/19 08:53:09 Modified: dba/connectivity/source/drivers/hsqldb/HTables.cxx
Log: INTEGRATION: CWS warningfixes02 (1.5.8); FILE MERGED 2006/06/30 11:44:34 sb 1.5.8.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box. File Changes: Directory: /dba/connectivity/source/drivers/hsqldb/ =================================================== File [changed]: HTables.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/hsqldb/HTables.cxx?r1=1.6&r2=1.7 Delta lines: +1 -1 ------------------- --- HTables.cxx 10 Jul 2006 14:28:27 -0000 1.6 +++ HTables.cxx 19 Jul 2006 15:53:06 -0000 1.7 @@ -181,7 +181,7 @@ Reference<XPropertySet> xProp(xObject,UNO_QUERY); sal_Bool bIsView; - if(bIsView = (xProp.is() && ::comphelper::getString(xProp->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE))) == ::rtl::OUString::createFromAscii("VIEW"))) // here we have a view + if((bIsView = (xProp.is() && ::comphelper::getString(xProp->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE))) == ::rtl::OUString::createFromAscii("VIEW")))) // here we have a view aSql += ::rtl::OUString::createFromAscii("VIEW "); else aSql += ::rtl::OUString::createFromAscii("TABLE "); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
