diff options
author | Sam Stenvall <neggelandia@gmail.com> | 2014-11-15 12:37:49 +0200 |
---|---|---|
committer | Sam Stenvall <neggelandia@gmail.com> | 2014-11-15 12:39:24 +0200 |
commit | 1ac9d24c752b010ce32d4a12b2eb38c4cfe2b9d0 (patch) | |
tree | 32bfa672b16429ed6965349c33f61e7ed704b6d9 | |
parent | 19893f8763c8240b59965885294577d0e5ae1da1 (diff) |
[pvr] add missing call to parent's OnPrepareFileItems()
-rw-r--r-- | xbmc/pvr/windows/GUIWindowPVRRecordings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/pvr/windows/GUIWindowPVRRecordings.cpp b/xbmc/pvr/windows/GUIWindowPVRRecordings.cpp index d52f943f2b..232ac5e2b5 100644 --- a/xbmc/pvr/windows/GUIWindowPVRRecordings.cpp +++ b/xbmc/pvr/windows/GUIWindowPVRRecordings.cpp @@ -364,4 +364,6 @@ void CGUIWindowPVRRecordings::OnPrepareFileItems(CFileItemList& items) } m_thumbLoader.Load(files); } + + CGUIWindowPVRBase::OnPrepareFileItems(items); } |