diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2010-12-20 16:44:39 +0100 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2010-12-20 16:44:39 +0100 |
commit | fcb659ae5ba83fe354842cf7bdefbdfb95894872 (patch) | |
tree | 657dd33998b98e604310dfb0e6ea59f65eaad2da | |
parent | 0aac16672abad45634f796dc2fc654ee6317faf5 (diff) |
#i10000# avoid warnings
Notes
Notes:
split repo tag: components_ooo/DEV300_m96
-rwxr-xr-x | extensions/source/ole/oleobjw.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx index 1f4842213b3c..949fb6c7c9b2 100755 --- a/extensions/source/ole/oleobjw.cxx +++ b/extensions/source/ole/oleobjw.cxx @@ -1376,7 +1376,7 @@ uno::Any SAL_CALL IUnknownWrapper_Impl::directInvoke( const ::rtl::OUString& aNa try { sal_Int32 revIndex = 0; - for ( nInd = 0; nInd < dispparams.cArgs; nInd++) + for ( nInd = 0; nInd < sal_Int32(dispparams.cArgs); nInd++) { revIndex = dispparams.cArgs - nInd - 1; arRefArgs[revIndex].byref = 0; |