diff -r 800e0f20cfe9 -r d9c996538b26 skins/AknSkins/sdcsrc/SDCIIDConstants.cpp --- a/skins/AknSkins/sdcsrc/SDCIIDConstants.cpp Fri Feb 19 23:50:17 2010 +0200 +++ b/skins/AknSkins/sdcsrc/SDCIIDConstants.cpp Fri Mar 12 15:48:30 2010 +0200 @@ -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;