aboutsummaryrefslogtreecommitdiff
path: root/jobs/basejob.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-14 00:01:38 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-14 00:01:38 +0900
commitf5b4c73ee571121f7b7505f03d9b1da7036aff32 (patch)
treeeb22b75823ef409285bb6e9d788c3e5ce10c8898 /jobs/basejob.cpp
parenta671d1aeff6bc9c01aa4204e0c05da894c72b603 (diff)
parentf8f7fb7a00e5100881e347f18e96a5b1a8f56227 (diff)
downloadlibquotient-f5b4c73ee571121f7b7505f03d9b1da7036aff32.tar.gz
libquotient-f5b4c73ee571121f7b7505f03d9b1da7036aff32.zip
Merge branch 'master' into kitsune-content-repo-create-room
Diffstat (limited to 'jobs/basejob.cpp')
-rw-r--r--jobs/basejob.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/jobs/basejob.cpp b/jobs/basejob.cpp
index dddff800..f508026f 100644
--- a/jobs/basejob.cpp
+++ b/jobs/basejob.cpp
@@ -392,12 +392,12 @@ BaseJob::duration_t BaseJob::millisToRetry() const
return d->retryTimer.isActive() ? d->retryTimer.remainingTime() : 0;
}
-size_t BaseJob::maxRetries() const
+int BaseJob::maxRetries() const
{
return d->maxRetries;
}
-void BaseJob::setMaxRetries(size_t newMaxRetries)
+void BaseJob::setMaxRetries(int newMaxRetries)
{
d->maxRetries = newMaxRetries;
}