diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-05-25 20:37:36 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-05-27 20:03:43 +0900 |
commit | 46050cd59a7af8cc7d616fab1a80db95dc8b5b35 (patch) | |
tree | d717d85e8b5d340050c317418e26addf1766a826 /jobs/passwordlogin.h | |
parent | 40195a814673fb8557a8b9c67a0f4d61191eb34e (diff) | |
download | libquotient-46050cd59a7af8cc7d616fab1a80db95dc8b5b35.tar.gz libquotient-46050cd59a7af8cc7d616fab1a80db95dc8b5b35.zip |
Use 'override' keyword throughout job classes; constify apiPath(), query(), data()
Thanks to CLang model.
Diffstat (limited to 'jobs/passwordlogin.h')
-rw-r--r-- | jobs/passwordlogin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jobs/passwordlogin.h b/jobs/passwordlogin.h index 19df118e..5e93e74e 100644 --- a/jobs/passwordlogin.h +++ b/jobs/passwordlogin.h @@ -37,9 +37,9 @@ namespace QMatrixClient QString server(); protected: - QString apiPath(); - QJsonObject data(); - void parseJson(const QJsonDocument& data); + QString apiPath() const override; + QJsonObject data() const override; + void parseJson(const QJsonDocument& data) override; private: class Private; @@ -47,4 +47,4 @@ namespace QMatrixClient }; } -#endif // QMATRIXCLIENT_PASSWORDLOGIN_H
\ No newline at end of file +#endif // QMATRIXCLIENT_PASSWORDLOGIN_H |