From 55afdcce6d46e9824467999aef92ef04347cfeb1 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Thu, 8 Mar 2012 11:44:28 +0100 Subject: WaE: comparison between signed and unsigned integer expressions --- dtrans/source/win32/misc/ImplHelper.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dtrans/source/win32/misc/ImplHelper.cxx') diff --git a/dtrans/source/win32/misc/ImplHelper.cxx b/dtrans/source/win32/misc/ImplHelper.cxx index 9061e8099190..abeb028309a3 100644 --- a/dtrans/source/win32/misc/ImplHelper.cxx +++ b/dtrans/source/win32/misc/ImplHelper.cxx @@ -183,8 +183,8 @@ sal_Bool SAL_CALL IsOEMCP( sal_uInt32 codepage ) 861, 862, 863, 864, 865, 866, 869, 874, 932, 936, 949, 950, 1361 }; - for ( sal_Int8 i = 0; i < ( SAL_N_ELEMENTS( arrOEMCP ) ); ++i ) - if ( (sal_uInt32) arrOEMCP[i] == codepage ) + for ( size_t i = 0; i < SAL_N_ELEMENTS( arrOEMCP ); ++i ) + if ( arrOEMCP[i] == codepage ) return sal_True; return sal_False; -- cgit v1.2.3