aboutsummaryrefslogtreecommitdiff
path: root/jobs/postreceiptjob.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-02 12:16:36 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-10-13 10:37:16 +0200
commitb2a017303a34e248873b2e47e560a41dc4c5111c (patch)
tree2745b5d555b7689a448b6800503f6ff3f8201265 /jobs/postreceiptjob.h
parentc9dc5e12b835425f1ba5c447ddb3c3394ccac93e (diff)
downloadlibquotient-b2a017303a34e248873b2e47e560a41dc4c5111c.tar.gz
libquotient-b2a017303a34e248873b2e47e560a41dc4c5111c.zip
All jobs: Drop ConnectionData parameter from the constructor
Having to pass ConnectionData to each and every job class was nothing but boilerplate since the very beginning. Removing it required to prepend BaseJob::start() with ConnectionData-setting code, and to provide a way to alter the request configuration depending on the (late-coming) ConnectionData object. This is a new responsibility of BaseJob::start(); the previous BaseJob::start() contents have moved to BaseJob::sendRequest() (which is now invoked on retries, instead of start()).
Diffstat (limited to 'jobs/postreceiptjob.h')
-rw-r--r--jobs/postreceiptjob.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/jobs/postreceiptjob.h b/jobs/postreceiptjob.h
index 1c84f411..23df7c05 100644
--- a/jobs/postreceiptjob.h
+++ b/jobs/postreceiptjob.h
@@ -25,7 +25,6 @@ namespace QMatrixClient
class PostReceiptJob: public BaseJob
{
public:
- PostReceiptJob(const ConnectionData* connection, const QString& roomId,
- const QString& eventId);
+ PostReceiptJob(const QString& roomId, const QString& eventId);
};
}