Tag: cws_src680_dba24 User: oj Date: 05/02/21 05:07:35 Modified: /dba/dbaccess/source/core/api/ RowSet.cxx
Log: RESYNC: (1.131-1.132); FILE MERGED File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: RowSet.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/RowSet.cxx?r1=1.131.4.3&r2=1.131.4.4 Delta lines: +7 -7 ------------------- --- RowSet.cxx 11 Feb 2005 11:15:23 -0000 1.131.4.3 +++ RowSet.cxx 21 Feb 2005 13:07:33 -0000 1.131.4.4 @@ -598,7 +598,7 @@ sal_Int64 SAL_CALL ORowSet::getSomething( const Sequence< sal_Int8 >& rId ) throw(RuntimeException) { if (rId.getLength() == 16 && 0 == rtl_compareMemory(getImplementationId().getConstArray(), rId.getConstArray(), 16 ) ) - return (sal_Int64)this; + return reinterpret_cast<sal_Int64>(this); return 0; } @@ -2040,7 +2040,7 @@ Reference< XUnoTunnel > xTunnel(i->get(),UNO_QUERY); if(xTunnel.is()) { - ORowSetClone* pClone = (ORowSetClone*)xTunnel->getSomething(ORowSetClone::getUnoTunnelImplementationId()); + ORowSetClone* pClone = reinterpret_cast<ORowSetClone*>(xTunnel->getSomething(ORowSetClone::getUnoTunnelImplementationId())); if(pClone) pClone->rowDelete(_rBookmark); } @@ -2054,7 +2054,7 @@ Reference< XUnoTunnel > xTunnel(i->get(),UNO_QUERY); if(xTunnel.is()) { - ORowSetClone* pClone = (ORowSetClone*)xTunnel->getSomething(ORowSetClone::getUnoTunnelImplementationId()); + ORowSetClone* pClone = reinterpret_cast<ORowSetClone*>(xTunnel->getSomething(ORowSetClone::getUnoTunnelImplementationId())); if(pClone) pClone->rowDeleted(_rBookmark); } @@ -2736,7 +2736,7 @@ sal_Int64 SAL_CALL ORowSetClone::getSomething( const Sequence< sal_Int8 >& rId ) throw(RuntimeException) { if (rId.getLength() == 16 && 0 == rtl_compareMemory(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) ) - return (sal_Int64)this; + return reinterpret_cast<sal_Int64>(this); return 0; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
