diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-25 21:23:52 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-25 21:23:52 +0900 |
commit | 9335a3beba0c15a64478458f418b648834779683 (patch) | |
tree | 459cb8ca30936e25039d734fb916413d5b45a284 /jobs/basejob.h | |
parent | ea6ce4d4628a06f4216335b4c72b02859852ff48 (diff) | |
download | libquotient-9335a3beba0c15a64478458f418b648834779683.tar.gz libquotient-9335a3beba0c15a64478458f418b648834779683.zip |
BaseJob: further minor code cleanup
Diffstat (limited to 'jobs/basejob.h')
-rw-r--r-- | jobs/basejob.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/jobs/basejob.h b/jobs/basejob.h index aa4894bd..0d669b78 100644 --- a/jobs/basejob.h +++ b/jobs/basejob.h @@ -168,7 +168,7 @@ namespace QMatrixClient * @param nextAttempt the 1-based number of attempt (will always be more than 1) * @param inMilliseconds the interval after which the next attempt will be taken */ - void retryScheduled(size_t nextAttempt, int inMilliseconds); + void retryScheduled(int nextAttempt, int inMilliseconds); /** * Emitted when the job is finished, in any case. It is used to notify @@ -185,7 +185,6 @@ namespace QMatrixClient * to avoid dangling pointers in your list. * * @param job the job that emitted this signal - * @internal * * @see success, failure */ |