mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-05 18:22:46 +00:00
WIP: Reimplementation of ListModels.
This commit is contained in:
parent
76a49868b9
commit
e421adf733
356 changed files with 1830 additions and 1833 deletions
|
@ -33,7 +33,6 @@
|
|||
#include <QJsonObject>
|
||||
#include <QJsonValue>
|
||||
#include <QList>
|
||||
#include <QSharedPointer>
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <optional>
|
||||
|
@ -131,11 +130,11 @@ This is used to identify the proper item for automatic updates.
|
|||
/**
|
||||
* @brief Gets or sets the versions.
|
||||
*/
|
||||
QList<QSharedPointer<VersionInfo>> versions() const;
|
||||
QList<VersionInfo> versions() const;
|
||||
/**
|
||||
* @brief Gets or sets the versions.
|
||||
*/
|
||||
void setVersions(QList<QSharedPointer<VersionInfo>> newVersions);
|
||||
void setVersions(QList<VersionInfo> newVersions);
|
||||
bool versionsNull() const;
|
||||
void setVersionsNull();
|
||||
|
||||
|
@ -158,7 +157,7 @@ protected:
|
|||
QString m_owner;
|
||||
QString m_category;
|
||||
QString m_guid;
|
||||
QList<QSharedPointer<VersionInfo>> m_versions;
|
||||
QList<VersionInfo> m_versions;
|
||||
QString m_imageUrl;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue