diff options
author | timoreo <contact@timoreo.fr> | 2022-09-26 11:50:31 +0200 |
---|---|---|
committer | timoreo <contact@timoreo.fr> | 2022-09-26 11:50:31 +0200 |
commit | 9ff364b0d3c12f9138037cce585c03c850721b82 (patch) | |
tree | 3404fb8ba162275b8eac6678c12832c3ec2a0936 /launcher/modplatform/flame/FlameAPI.h | |
parent | 4f6d964217f6addd4f29969168a7d40ed4729dde (diff) | |
download | PrismLauncher-9ff364b0d3c12f9138037cce585c03c850721b82.tar.gz PrismLauncher-9ff364b0d3c12f9138037cce585c03c850721b82.tar.bz2 PrismLauncher-9ff364b0d3c12f9138037cce585c03c850721b82.zip |
huge nit: added const refs, everywhere
Signed-off-by: timoreo <contact@timoreo.fr>
Diffstat (limited to 'launcher/modplatform/flame/FlameAPI.h')
-rw-r--r-- | launcher/modplatform/flame/FlameAPI.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/flame/FlameAPI.h b/launcher/modplatform/flame/FlameAPI.h index 5e6166b9..4c6ca64c 100644 --- a/launcher/modplatform/flame/FlameAPI.h +++ b/launcher/modplatform/flame/FlameAPI.h @@ -12,7 +12,7 @@ class FlameAPI : public NetworkModAPI { auto getLatestVersion(VersionSearchArgs&& args) -> ModPlatform::IndexedVersion; auto getProjects(QStringList addonIds, QByteArray* response) const -> NetJob* override; - auto getFiles(QStringList fileIds, QByteArray* response) const -> NetJob*; + auto getFiles(const QStringList& fileIds, QByteArray* response) const -> NetJob*; private: inline auto getSortFieldInt(QString sortString) const -> int |