diff -r 1951b3078691 -r c6286dcf6040 skins/AknSkins/sdcsrc/SDCIIDConstants.cpp --- a/skins/AknSkins/sdcsrc/SDCIIDConstants.cpp Fri Apr 16 16:01:57 2010 +0300 +++ b/skins/AknSkins/sdcsrc/SDCIIDConstants.cpp Mon May 03 13:28:06 2010 +0300 @@ -17,9 +17,12 @@ #include +#include + #include "SDCGlobals.h" #include "SDCIIDConstants.h" #include "SDCInput.h" +#include "SDCCompat.h" // Make std namespace available for compatibility namespace std {} @@ -76,7 +79,7 @@ while( input.NextTokenAllowLF() ) { - if( _wcsicmp( input.iToken, L"IID" ) == 0 ) + if( sd_wcscasecmp( input.iToken, L"IID" ) == 0 ) { // Parse string token input.NextStringToken(); @@ -116,9 +119,9 @@ const TSDCIIDEntry* SDCIIDConstants::Find( const wchar_t* aName ) { - for( int i=0; iiName ) == 0 ) + if( sd_wcscasecmp( aName, gIIDVector[i]->iName ) == 0 ) return gIIDVector[i]; } return NULL;