diff options
author | spiff_ <spiff_@svn> | 2010-04-27 21:12:46 +0000 |
---|---|---|
committer | spiff_ <spiff_@svn> | 2010-04-27 21:12:46 +0000 |
commit | 8fc73bc404d917ee9b156791be7a28351a043e78 (patch) | |
tree | da81bd19380fe5d599636f7d482bab03cd2385b1 | |
parent | 683d2f54dd5e5a106f7e4793b678038e44a5b43b (diff) |
fixed: forgot to flag addon info dialog as having fileitems
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@29563 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/GUIDialogAddonInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/GUIDialogAddonInfo.h b/xbmc/GUIDialogAddonInfo.h index 15b506d202..cbd27d40a1 100644 --- a/xbmc/GUIDialogAddonInfo.h +++ b/xbmc/GUIDialogAddonInfo.h @@ -33,6 +33,7 @@ public: bool OnMessage(CGUIMessage& message); virtual CFileItemPtr GetCurrentListItem(int offset = 0) { return m_item; } + virtual bool HasListItems() const { return true; } void OnInstall(); void OnDisable(); |