User: ihi Date: 2006/09/06 02:22:30 Modified: dba/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
Log: #i10000# fix of the fix of int/uint File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: SingleSelectQueryComposer.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/SingleSelectQueryComposer.cxx?r1=1.19&r2=1.20 Delta lines: +3 -4 ------------------- --- SingleSelectQueryComposer.cxx 5 Sep 2006 16:44:48 -0000 1.19 +++ SingleSelectQueryComposer.cxx 6 Sep 2006 09:22:28 -0000 1.20 @@ -4,9 +4,9 @@ * * $RCSfile: SingleSelectQueryComposer.cxx,v $ * - * $Revision: 1.19 $ + * $Revision: 1.20 $ * - * last change: $Author: ihi $ $Date: 2006/09/05 16:44:48 $ + * last change: $Author: ihi $ $Date: 2006/09/06 09:22:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -792,8 +792,7 @@ SizeTSet aUsedSelectColumns; sal_Int32 nCount = xResultSetMeta->getColumnCount(); - sal_Int32 nSize = aSelectColumns->size(); - OSL_ENSURE( nCount == nSize , "OSingleSelectQueryComposer::getColumns: inconsistent column counts, this might result in wrong columns!" ); + OSL_ENSURE( (size_t) nCount == aSelectColumns->size(), "OSingleSelectQueryComposer::getColumns: inconsistent column counts, this might result in wrong columns!" ); for(sal_Int32 i=1;i<=nCount;++i) { ::rtl::OUString sName = xResultSetMeta->getColumnName(i); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
