--- a/skins/AknSkins/sdcsrc/SDCPkgOutput.cpp Fri Feb 19 23:50:17 2010 +0200
+++ b/skins/AknSkins/sdcsrc/SDCPkgOutput.cpp Fri Mar 12 15:48:30 2010 +0200
@@ -20,6 +20,7 @@
#include "SDCException.h"
#include "SDCInput.h"
#include "AknsConstants.hrh"
+#include "SDCCompat.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
@@ -173,16 +174,16 @@
vector<wchar_t*> soundFiles;
- int i;
+ unsigned int i;
for( i=0; i<aData->iStringDefVector.size(); i++ )
{
TSDCStringDef* entry = aData->iStringDefVector[i];
if( entry->iIID.iMajor == EAknsMajorSound )
{
bool alreadyAppended = false;
- for( int a=0; a<soundFiles.size(); a++ )
+ for( unsigned int a=0; a<soundFiles.size(); a++ )
{
- if( !wcsicmp( entry->iString, soundFiles[a] ) )
+ if( ! sd_wcscasecmp( entry->iString, soundFiles[a] ) )
{
alreadyAppended = true;
}