diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-04-29 14:34:38 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-04-29 14:34:38 +0200 |
commit | 23d8c802eb2c0e60224a019c69d253c222010be9 (patch) | |
tree | 3d71e7848d427046c117b653ba5ae64310d1ce0b | |
parent | 53e988faa295f245dea4f69249ecb165e245a9c3 (diff) | |
download | kube-23d8c802eb2c0e60224a019c69d253c222010be9.tar.gz kube-23d8c802eb2c0e60224a019c69d253c222010be9.zip |
Don't print every mail we query for.
-rw-r--r-- | framework/domain/maillistmodel.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/framework/domain/maillistmodel.cpp b/framework/domain/maillistmodel.cpp index b46fabf8..7cbc5587 100644 --- a/framework/domain/maillistmodel.cpp +++ b/framework/domain/maillistmodel.cpp | |||
@@ -78,7 +78,6 @@ QVariant MailListModel::data(const QModelIndex &idx, int role) const | |||
78 | QFile file(filename); | 78 | QFile file(filename); |
79 | if (file.open(QFile::ReadOnly)) { | 79 | if (file.open(QFile::ReadOnly)) { |
80 | auto content = file.readAll(); | 80 | auto content = file.readAll(); |
81 | qWarning() << filename << content; | ||
82 | return content; | 81 | return content; |
83 | } else { | 82 | } else { |
84 | qWarning() << "Failed to open the file"; | 83 | qWarning() << "Failed to open the file"; |