summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:40:00 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:40:00 +0000
commit53387a40cff46737cb9b6e8b3e4d4f434cdd4745 (patch)
treeb095141d9ca8dd1b54ef3a74d1a6ef5529624d84 /xmlhelp
parent8a9adeb49b1ce105f7920fe43924b698ece3a9b4 (diff)
INTEGRATION: CWS warnings01 (1.11.18); FILE MERGED
2005/12/15 16:36:43 ab 1.11.18.1: #i53898# Removed warnings for unxlngi6/unxlngi6.pro
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
index 202c2cb1b461..f89140753e91 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: resultsetforquery.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 12:21:12 $
+ * last change: $Author: hr $ $Date: 2006-06-20 00:40:00 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -84,8 +84,8 @@ ResultSetForQuery::ResultSetForQuery( const uno::Reference< lang::XMultiServiceF
URLParameter& aURLParameter,
Databases* pDatabases )
: ResultSetBase( xMSF,xProvider,nOpenMode,seq,seqSort ),
- m_aURLParameter( aURLParameter ),
- m_pDatabases( pDatabases )
+ m_pDatabases( pDatabases ),
+ m_aURLParameter( aURLParameter )
{
Reference< XTransliteration > xTrans(
xMSF->createInstance( rtl::OUString::createFromAscii( "com.sun.star.i18n.Transliteration" ) ),
@@ -208,7 +208,7 @@ ResultSetForQuery::ResultSetForQuery( const uno::Reference< lang::XMultiServiceF
aCommand.Name = rtl::OUString::createFromAscii( "getPropertyValues" );
aCommand.Argument <<= m_sProperty;
- for( m_nRow = 0; m_nRow < m_aPath.size(); ++m_nRow )
+ for( m_nRow = 0; sal::static_int_cast<sal_uInt32>( m_nRow ) < m_aPath.size(); ++m_nRow )
{
m_aPath[m_nRow] =
m_aPath[m_nRow] +
@@ -225,5 +225,5 @@ ResultSetForQuery::ResultSetForQuery( const uno::Reference< lang::XMultiServiceF
;
}
}
- m_nRow = -1;
+ m_nRow = 0xffffffff;
}