aboutsummaryrefslogtreecommitdiff
path: root/xbmc/PartyModeManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/PartyModeManager.h')
-rw-r--r--xbmc/PartyModeManager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xbmc/PartyModeManager.h b/xbmc/PartyModeManager.h
index 4acb496f2d..1809aeb850 100644
--- a/xbmc/PartyModeManager.h
+++ b/xbmc/PartyModeManager.h
@@ -15,9 +15,9 @@
class CFileItem; typedef std::shared_ptr<CFileItem> CFileItemPtr;
class CFileItemList;
-namespace PLAYLIST
+namespace KODI::PLAYLIST
{
-using Id = int;
+enum class Id;
class CPlayList;
}
@@ -37,7 +37,7 @@ public:
void Disable();
void Play(int iPos);
void OnSongChange(bool bUpdatePlayed = false);
- void AddUserSongs(PLAYLIST::CPlayList& tempList, bool bPlay = false);
+ void AddUserSongs(KODI::PLAYLIST::CPlayList& tempList, bool bPlay = false);
void AddUserSongs(CFileItemList& tempList, bool bPlay = false);
bool IsEnabled(PartyModeContext context=PARTYMODECONTEXT_UNKNOWN) const;
int GetSongsPlayed();
@@ -59,7 +59,7 @@ private:
void ClearState();
void UpdateStats();
void Announce();
- PLAYLIST::Id GetPlaylistId() const;
+ KODI::PLAYLIST::Id GetPlaylistId() const;
// state
bool m_bEnabled;