diff options
Diffstat (limited to 'common/domain/mail.cpp')
-rw-r--r-- | common/domain/mail.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/domain/mail.cpp b/common/domain/mail.cpp index c52bfe0..230ef31 100644 --- a/common/domain/mail.cpp +++ b/common/domain/mail.cpp | |||
@@ -83,6 +83,9 @@ QSharedPointer<ReadPropertyMapper<TypeImplementation<Mail>::Buffer> > TypeImplem | |||
83 | propertyMapper->addMapping("important", [](Buffer const *buffer) -> QVariant { | 83 | propertyMapper->addMapping("important", [](Buffer const *buffer) -> QVariant { |
84 | return propertyToVariant<bool>(buffer->important()); | 84 | return propertyToVariant<bool>(buffer->important()); |
85 | }); | 85 | }); |
86 | propertyMapper->addMapping("folder", [](Buffer const *buffer) -> QVariant { | ||
87 | return propertyToVariant<QString>(buffer->folder()); | ||
88 | }); | ||
86 | return propertyMapper; | 89 | return propertyMapper; |
87 | } | 90 | } |
88 | 91 | ||