result r = __pPendingEventList->Construct();
SysTryReturnVoidResult(NID_SHELL, !IsFailed(r), E_SYSTEM, "Failed to execute Construct.");
- static __HashMapDefaultProviderT <String> strHashCodeProvider;
- static ComparerT <String> strComparer;
- r = __appWidgetContextList.Construct(0, 0, strHashCodeProvider, strComparer);
+ r = __appWidgetContextList.Construct();
SysTryReturnVoidResult(NID_SHELL, !IsFailed(r), E_SYSTEM, "Failed to execute Construct.");
}
result
AppWidgetManagerService::Construct(const char* pCoreDaemonId)
{
+ result r = __appContextList.Construct();
+ SysTryReturnResult(NID_SHELL, !IsFailed(r), E_SYSTEM, "Failed to execute Construct.");
+
_AppWidgetManagerStub::StartIpcServer();
SettingInfo::AddSettingEventListener(*this);
- static __HashMapDefaultProviderT <String> strHashCodeProvider;
- static ComparerT <String> strComparer;
-
- result r = __appContextList.Construct(0, 0, strHashCodeProvider, strComparer);
- SysTryReturnResult(NID_SHELL, !IsFailed(r), E_SYSTEM, "Failed to execute Construct.");
-
return InitializeCoreDaemonEventReceiver(pCoreDaemonId);
}