diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-05-01 20:04:51 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-05-01 20:59:50 +0900 |
commit | 38934c2310b426be640988dc10f48de88a3d92bc (patch) | |
tree | f69dbe30e73e4572cefd7804a6dfc2226e21738c /lib/jobs/generated/content-repo.h | |
parent | ea363441269c9100c4bcc8076d4b3d125333a649 (diff) | |
download | libquotient-38934c2310b426be640988dc10f48de88a3d92bc.tar.gz libquotient-38934c2310b426be640988dc10f48de88a3d92bc.zip |
jobs/generated: use std::move in baseURL; type updates from the API files
The type updates are a matter of pending PR to matrix-doc yet.
Diffstat (limited to 'lib/jobs/generated/content-repo.h')
-rw-r--r-- | lib/jobs/generated/content-repo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/jobs/generated/content-repo.h b/lib/jobs/generated/content-repo.h index b4ea562f..e1e58f88 100644 --- a/lib/jobs/generated/content-repo.h +++ b/lib/jobs/generated/content-repo.h @@ -111,12 +111,12 @@ namespace QMatrixClient * a URL for GetUrlPreviewJob is necessary but the job * itself isn't. */ - static QUrl makeRequestUrl(QUrl baseUrl, const QString& url, double ts = {}); + static QUrl makeRequestUrl(QUrl baseUrl, const QString& url, qint64 ts = {}); - explicit GetUrlPreviewJob(const QString& url, double ts = {}); + explicit GetUrlPreviewJob(const QString& url, qint64 ts = {}); ~GetUrlPreviewJob() override; - double matrixImageSize() const; + qint64 matrixImageSize() const; const QString& ogImage() const; protected: |