User: ihi     
Date: 2006/09/05 09:40:58

Modified:
   dba/dbaccess/source/core/api/SingleSelectQueryComposer.cxx

Log:
 #i100000# comparision of signed/unsigned

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.17&r2=1.18
Delta lines:  +5 -4
-------------------
--- SingleSelectQueryComposer.cxx       22 Aug 2006 12:52:10 -0000      1.17
+++ SingleSelectQueryComposer.cxx       5 Sep 2006 16:40:56 -0000       1.18
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: SingleSelectQueryComposer.cxx,v $
  *
- *  $Revision: 1.17 $
+ *  $Revision: 1.18 $
  *
- *  last change: $Author: ihi $ $Date: 2006/08/22 12:52:10 $
+ *  last change: $Author: ihi $ $Date: 2006/09/05 16:40:56 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -792,7 +792,8 @@
         SizeTSet aUsedSelectColumns;
 
                sal_Int32 nCount = xResultSetMeta->getColumnCount();
-        OSL_ENSURE( nCount == aSelectColumns->size(), 
"OSingleSelectQueryComposer::getColumns: inconsistent column counts, this might 
result in wrong columns!" );
+        sal_Int32 nSize  = aSelectColumns->size();
+        OSL_ENSURE( nCount == nSize, "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]

Reply via email to