--- a/locationsystemui/locationsysui/locsuplsettingsui/src/locsuplsessioneditor.cpp Tue Feb 02 10:12:24 2010 +0200
+++ b/locationsystemui/locationsysui/locsuplsettingsui/src/locsuplsessioneditor.cpp Fri Apr 16 15:23:31 2010 +0300
@@ -39,6 +39,7 @@
#include <data_caging_path_literals.hrh>
#include <gulicon.h> // Gul Icon
#include <StringLoader.h>
+#include <hlplch.h>
#include <epos_csuplsettingsconstants.h>
#include <epos_csuplsettingparams.h>
@@ -229,6 +230,8 @@
}
case EAknCmdHelp:
{
+ HlpLauncher::LaunchHelpApplicationL( iCoeEnv->WsSession(),
+ iAvkonAppUi->AppHelpContextL() );
break;
}
case EEikCmdExit:
@@ -610,6 +613,7 @@
if( !aSeconds )
{
tempString.Num(aSeconds);
+ AknTextUtils::LanguageSpecificNumberConversion(tempString);
aTimeString = StringLoader::LoadL( R_LOC_SUPL_TRIGGER_TIME_MINUTES, tempString );
return;
}
@@ -622,6 +626,7 @@
TReal mins = TReal(aSeconds)/KMinToSecs;
Math::Round( approxValue, mins, 2 );
tempString.Num(approxValue, fmt);
+ AknTextUtils::LanguageSpecificNumberConversion(tempString);
aTimeString = StringLoader::LoadL( R_LOC_SUPL_TRIGGER_TIME_MINUTES, tempString );
}
else if( hrs == 1 )
@@ -635,6 +640,7 @@
{
Math::Round( approxValue, hrs, 2 );
tempString.Num(approxValue, fmt);
+ AknTextUtils::LanguageSpecificNumberConversion(tempString);
aTimeString = StringLoader::LoadL( R_LOC_SUPL_TRIGGER_TIME_HOURS, tempString );
}
else if( days == 1 )
@@ -645,7 +651,8 @@
{
Math::Round( approxValue, days, 2 );
tempString.Num(approxValue, fmt);
- aTimeString = StringLoader::LoadL( R_LOC_SUPL_TRIGGER_TIME_DAYS, tempString );
+ AknTextUtils::LanguageSpecificNumberConversion(tempString);
+ aTimeString = StringLoader::LoadL( R_LOC_SUPL_TRIGGER_TIME_DAYS, tempString );
}
}
}