summaryrefslogtreecommitdiffstats
path: root/examples/imapresource/imapserverproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/imapresource/imapserverproxy.h')
-rw-r--r--examples/imapresource/imapserverproxy.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/imapresource/imapserverproxy.h b/examples/imapresource/imapserverproxy.h
index 5244cdc..a9e3d67 100644
--- a/examples/imapresource/imapserverproxy.h
+++ b/examples/imapresource/imapserverproxy.h
@@ -60,8 +60,10 @@ struct Message {
60 60
61struct Folder { 61struct Folder {
62 Folder() = default; 62 Folder() = default;
63 Folder(const QString &path, const QChar &separator, bool noselect_) 63 Folder(const QString &path, const QChar &separator, bool noselect_, bool subscribed_, const QByteArrayList &flags_)
64 : noselect(noselect_), 64 : noselect(noselect_),
65 subscribed(subscribed_),
66 flags(flags_),
65 mPath(path), 67 mPath(path),
66 pathParts(path.split(separator)), 68 pathParts(path.split(separator)),
67 mSeparator(separator) 69 mSeparator(separator)
@@ -94,6 +96,8 @@ struct Folder {
94 } 96 }
95 97
96 bool noselect = false; 98 bool noselect = false;
99 bool subscribed = false;
100 QByteArrayList flags;
97 101
98private: 102private:
99 QString mPath; 103 QString mPath;