1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-06 10:32:44 +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

@ -148,9 +148,9 @@ public:
void setAlbumArtist(QSharedPointer<RemoteSearchResult> newAlbumArtist);
QList<QSharedPointer<RemoteSearchResult>> artists() const;
QList<RemoteSearchResult> artists() const;
void setArtists(QList<QSharedPointer<RemoteSearchResult>> newArtists);
void setArtists(QList<RemoteSearchResult> newArtists);
bool artistsNull() const;
void setArtistsNull();
@ -167,7 +167,7 @@ protected:
QString m_searchProviderName;
QString m_overview;
QSharedPointer<RemoteSearchResult> m_albumArtist = nullptr;
QList<QSharedPointer<RemoteSearchResult>> m_artists;
QList<RemoteSearchResult> m_artists;
};
} // NS DTO