diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-11-30 03:36:29 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-07 12:33:55 +0900 |
commit | 6fc3c79c2b3ac318d3a140594ded28020f9a8afb (patch) | |
tree | d1940e407f68966cb7dbffb991ca06a2d728dbc1 /jobs/generated/banning.h | |
parent | e88627976488b0b6eea6da3389eefb860980d661 (diff) | |
download | libquotient-6fc3c79c2b3ac318d3a140594ded28020f9a8afb.tar.gz libquotient-6fc3c79c2b3ac318d3a140594ded28020f9a8afb.zip |
Generated jobs: Apply naming convention to parameters
It's now camelCase everywhere, even if The Spec uses snake_case (it is
not consistent in that respect).
Diffstat (limited to 'jobs/generated/banning.h')
-rw-r--r-- | jobs/generated/banning.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jobs/generated/banning.h b/jobs/generated/banning.h index b9d5b8db..e225a6ef 100644 --- a/jobs/generated/banning.h +++ b/jobs/generated/banning.h @@ -18,13 +18,13 @@ namespace QMatrixClient class BanJob : public BaseJob { public: - explicit BanJob(QString roomId, QString user_id, QString reason = {}); + explicit BanJob(QString roomId, QString userId, QString reason = {}); }; class UnbanJob : public BaseJob { public: - explicit UnbanJob(QString roomId, QString user_id); + explicit UnbanJob(QString roomId, QString userId); }; |