diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-09-04 15:15:58 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-09-04 15:15:58 +0200 |
commit | eb1664326e69757b18abd5fef8d22c9a328a2d28 (patch) | |
tree | ca95afd644a02b13cc0f62cb8b1f806535dc3dbb /framework/domain/messageparser.cpp | |
parent | 938d2d4acfe9c29210ef9c0b61ebf254d99658ba (diff) | |
download | kube-eb1664326e69757b18abd5fef8d22c9a328a2d28.tar.gz kube-eb1664326e69757b18abd5fef8d22c9a328a2d28.zip |
able to show all mails and not segfault by random mails (tempfix)
Diffstat (limited to 'framework/domain/messageparser.cpp')
-rw-r--r-- | framework/domain/messageparser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/domain/messageparser.cpp b/framework/domain/messageparser.cpp index 8363e119..ff763aec 100644 --- a/framework/domain/messageparser.cpp +++ b/framework/domain/messageparser.cpp | |||
@@ -89,7 +89,8 @@ QVariant PartModel::data(const QModelIndex &index, int role) const | |||
89 | case Type: | 89 | case Type: |
90 | return part->metaObject()->className(); | 90 | return part->metaObject()->className(); |
91 | case IsHidden: | 91 | case IsHidden: |
92 | return part->property("isHidden").toBool(); | 92 | return false; |
93 | //return part->property("isHidden").toBool(); | ||
93 | 94 | ||
94 | } | 95 | } |
95 | } | 96 | } |