Fix coding style for various things

This commit is contained in:
thalieht 2018-11-06 17:49:17 +02:00 committed by sledgehammer999
parent c62127e9f1
commit 62e71a15a4
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2
35 changed files with 120 additions and 121 deletions

View file

@ -291,7 +291,7 @@ QByteArray Smtp::encodeMimeHeader(const QString &key, const QString &value, QTex
if (!prefix.isEmpty()) line += prefix;
if (!value.contains("=?") && latin1->canEncode(value)) {
bool firstWord = true;
foreach (const QByteArray& word, value.toLatin1().split(' ')) {
foreach (const QByteArray &word, value.toLatin1().split(' ')) {
if (line.size() > 78) {
rv = rv + line + "\r\n";
line.clear();