1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-05 10:12:46 +00:00

WIP: Reimplementation of ListModels.

This commit is contained in:
Chris Josten 2021-03-26 21:27:35 +01:00
parent 76a49868b9
commit e421adf733
356 changed files with 1830 additions and 1833 deletions

View file

@ -224,9 +224,9 @@ public:
void setRepeatMode(RepeatMode newRepeatMode);
QList<QSharedPointer<QueueItem>> nowPlayingQueue() const;
QList<QueueItem> nowPlayingQueue() const;
void setNowPlayingQueue(QList<QSharedPointer<QueueItem>> newNowPlayingQueue);
void setNowPlayingQueue(QList<QueueItem> newNowPlayingQueue);
bool nowPlayingQueueNull() const;
void setNowPlayingQueueNull();
@ -257,7 +257,7 @@ protected:
QString m_liveStreamId;
QString m_playSessionId;
RepeatMode m_repeatMode;
QList<QSharedPointer<QueueItem>> m_nowPlayingQueue;
QList<QueueItem> m_nowPlayingQueue;
QString m_playlistItemId;
};