aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Sommerfeld <kai.sommerfeld@gmx.com>2020-02-09 22:41:52 +0100
committerKai Sommerfeld <kai.sommerfeld@gmx.com>2020-02-10 07:42:39 +0100
commitd195c47a2925cbfe6119e154d5ebd134bb3de0ea (patch)
tree973893f64ef25445907ca687a1a676219f3f6fdd
parent341f990a031e8d617cfc71945f6d658d711db335 (diff)
[PVR] CGUIEPGGridContainer: Fix GUI_MSG_REFRESH_LIST message parameters.
-rw-r--r--xbmc/pvr/guilib/GUIEPGGridContainer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/pvr/guilib/GUIEPGGridContainer.cpp b/xbmc/pvr/guilib/GUIEPGGridContainer.cpp
index c7d93c07d6..5b8ca6192f 100644
--- a/xbmc/pvr/guilib/GUIEPGGridContainer.cpp
+++ b/xbmc/pvr/guilib/GUIEPGGridContainer.cpp
@@ -2351,7 +2351,8 @@ void CGUIEPGGridContainer::HandleProgrammeGrid(bool bRender, unsigned int curren
if (m_gridModel->FreeProgrammeMemory(firstChannel, lastChannel, firstBlock, lastBlock))
{
// announce changed viewport
- const CGUIMessage msg(GUI_MSG_REFRESH_LIST, GetID(), 0, static_cast<int>(PVREvent::Epg));
+ const CGUIMessage msg(
+ GUI_MSG_REFRESH_LIST, GetParentID(), GetID(), static_cast<int>(PVREvent::Epg));
KODI::MESSAGING::CApplicationMessenger::GetInstance().SendGUIMessage(msg);
}
}