changed service call

This commit is contained in:
louis 2013-07-12 17:23:16 +02:00
parent ba3d6c07d0
commit 3f70106853

View File

@ -195,9 +195,9 @@ bool cPluginTvguide::Service(const char *Id, void *Data)
if (strcmp(Id, "MainMenuHooksPatch-v1.0::osSchedule") == 0 && tvguideConfig.replaceOriginalSchedule != 0) { if (strcmp(Id, "MainMenuHooksPatch-v1.0::osSchedule") == 0 && tvguideConfig.replaceOriginalSchedule != 0) {
if (Data == NULL) if (Data == NULL)
return true; return true;
cOsdMenu **menu = (cOsdMenu**) Data; cOsdObject **guide = (cOsdObject**) Data;
if (menu) if (guide)
*menu = (cOsdMenu*) MainMenuAction(); *guide = MainMenuAction();
return true; return true;
} }
return false; return false;