diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 00:18:55 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 00:18:55 +0000 |
commit | 47d5b1b57955d359772f87f449f29eeab14f439a (patch) | |
tree | a6d4df09178487cefe85c99df383f2c030ffd03a /connectivity/source/drivers/dbase/DCode.cxx | |
parent | fab4913b20173338f2e4ef976748ddb692f773aa (diff) |
INTEGRATION: CWS warnings01 (1.4.28); FILE MERGED
2005/11/07 14:43:12 fs 1.4.28.1: #i57457# warning-free code
Diffstat (limited to 'connectivity/source/drivers/dbase/DCode.cxx')
-rw-r--r-- | connectivity/source/drivers/dbase/DCode.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/dbase/DCode.cxx b/connectivity/source/drivers/dbase/DCode.cxx index a6e4d50163d1..2743ca67ef86 100644 --- a/connectivity/source/drivers/dbase/DCode.cxx +++ b/connectivity/source/drivers/dbase/DCode.cxx @@ -4,9 +4,9 @@ * * $RCSfile: DCode.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-08 05:37:00 $ + * last change: $Author: hr $ $Date: 2006-06-20 01:18:55 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -119,7 +119,7 @@ OEvaluateSet* OFILEOperandAttr::preProcess(OBoolOperator* pOp, OOperand* pRight) Reference<XUnoTunnel> xTunnel(m_xIndex,UNO_QUERY); if(xTunnel.is()) { - ODbaseIndex* pIndex = (ODbaseIndex*)xTunnel->getSomething(ODbaseIndex::getUnoTunnelImplementationId()); + ODbaseIndex* pIndex = reinterpret_cast< ODbaseIndex* >( xTunnel->getSomething(ODbaseIndex::getUnoTunnelImplementationId()) ); if(pIndex) { OIndexIterator* pIter = pIndex->createIterator(pOp,pRight); |