--- a/uifw/EikStd/srvuisrc/EIKSRVUI.CPP Tue May 11 16:27:42 2010 +0300
+++ b/uifw/EikStd/srvuisrc/EIKSRVUI.CPP Tue May 25 12:58:19 2010 +0300
@@ -624,12 +624,13 @@
EXPORT_C void CEikServAppUiBase::HandleThreadExitL(RThread& aThread)
{
+ _LIT(KAppArcServerThread, "AppArcServerThread");
if (aThread.Name() == ASCliDefinitions::ServerAndThreadName()) // alarm server died
{
aThread.Close(); // need to Close() before restarting with same name
iServerToRestart |= EAlwlSvr; // restarted under active object
}
- else if (aThread.Name()==NameApaServServerThread()) // AppArc server died
+ else if (aThread.Name() == KAppArcServerThread) // AppArc server died
{
aThread.Close();
iServerToRestart|=EApaSvr;