Remove extra clang-format options

This commit is contained in:
Konstantinos Sideris 2017-10-01 12:11:33 +03:00
parent 18e9fd6ada
commit 0c0ac68bc2
30 changed files with 61 additions and 120 deletions

View file

@ -64,8 +64,8 @@ MatrixClient::onVersionsResponse(QNetworkReply *reply)
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
if (status_code == 404) {
emit versionError(
"Versions endpoint was not found on the server. Possibly not a Matrix server");
emit versionError("Versions endpoint was not found on the server. Possibly "
"not a Matrix server");
return;
}
@ -581,8 +581,8 @@ MatrixClient::sync() noexcept
query.addQueryItem("access_token", token_);
if (next_batch_.isEmpty()) {
qDebug()
<< "Sync requires a valid next_batch token. Initial sync should be performed.";
qDebug() << "Sync requires a valid next_batch token. Initial sync should "
"be performed.";
return;
}
@ -684,8 +684,8 @@ MatrixClient::versions() noexcept
void
MatrixClient::getOwnProfile() noexcept
{
// FIXME: Remove settings from the matrix client. The class should store the user's matrix
// ID.
// FIXME: Remove settings from the matrix client. The class should store the
// user's matrix ID.
QSettings settings;
auto userid = settings.value("auth/user_id", "").toString();