diff options
author | Andrea Scarpino <me@andreascarpino.it> | 2016-05-30 23:51:38 +0200 |
---|---|---|
committer | Andrea Scarpino <me@andreascarpino.it> | 2016-05-30 23:59:26 +0200 |
commit | 15699734c64c1e2359f9f1f3c74fd1f4c4e23a27 (patch) | |
tree | cc7406e66175ce7433371fc4335d5a0d8a1dcead /jobs | |
parent | d5df4568d34487aea519ae97dd1666927dcfb62b (diff) | |
download | libquotient-15699734c64c1e2359f9f1f3c74fd1f4c4e23a27.tar.gz libquotient-15699734c64c1e2359f9f1f3c74fd1f4c4e23a27.zip |
Require Qt 5.2.0
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/passwordlogin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jobs/passwordlogin.cpp b/jobs/passwordlogin.cpp index d989815f..d882e25c 100644 --- a/jobs/passwordlogin.cpp +++ b/jobs/passwordlogin.cpp @@ -74,7 +74,7 @@ QString PasswordLogin::apiPath() QJsonObject PasswordLogin::data() { QJsonObject json; - json.insert("type", "m.login.password"); + json.insert("type", QLatin1String("m.login.password")); json.insert("user", d->user); json.insert("password", d->password); return json; |