INTEGRATION: CWS warnings01 (1.25.6); FILE MERGED

2005/11/16 16:47:54 pl 1.25.6.3: #i55991# removed warnings
2005/11/07 16:49:39 pl 1.25.6.2: RESYNC: (1.25-1.26); FILE MERGED
2005/10/27 12:10:53 sb 1.25.6.1: #i53898# Made code warning-free.
This commit is contained in:
Jens-Heiner Rechtien 2006-06-19 09:38:55 +00:00
parent a9fd495e74
commit f9cdc191df

View file

@ -4,9 +4,9 @@
*
* $RCSfile: sjapplet_impl.cxx,v $
*
* $Revision: 1.26 $
* $Revision: 1.27 $
*
* last change: $Author: hr $ $Date: 2005-10-13 17:05:18 $
* last change: $Author: hr $ $Date: 2006-06-19 10:38:55 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -39,7 +39,7 @@
#define HMENU int
#define HDC int
#include <rtl/ustring>
#include "rtl/ustring.hxx"
#include <rtl/process.h>
#include <osl/mutex.hxx>
@ -347,7 +347,7 @@ void SjApplet2_Impl::init(Window * pParentWin,
jobject joParameters = pEnv->AllocObject(jcHashtable); testJavaException(pEnv);
pEnv->CallVoidMethod(joParameters, jmHashtable_rinit); testJavaException(pEnv);
for(sal_Int64 i = 0; i < rCmdList.Count(); ++i) {
for(sal_uInt32 i = 0; i < rCmdList.Count(); ++i) {
const SvCommand & rCmd = rCmdList[i];
String aCmd = rCmd.GetCommand();
String aLoweredCmd = aCmd.ToLowerAscii();