diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 09:38:55 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 09:38:55 +0000 |
commit | f9cdc191df9379b557a9ef0edd9edf487a8d4a61 (patch) | |
tree | 034e7803519cd8888bce21e9d16c423099fcf0bc /sj2/source | |
parent | a9fd495e740b4699a5c206eac02b688cf2540b35 (diff) |
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.
Diffstat (limited to 'sj2/source')
-rw-r--r-- | sj2/source/jscpp/sjapplet_impl.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sj2/source/jscpp/sjapplet_impl.cxx b/sj2/source/jscpp/sjapplet_impl.cxx index 8d169d75b5c7..89c34babc977 100644 --- a/sj2/source/jscpp/sjapplet_impl.cxx +++ b/sj2/source/jscpp/sjapplet_impl.cxx @@ -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(); |