diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-01 13:14:14 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-01 13:14:14 +0100 |
commit | 2f0605ded80cd4c216b8cbaaf228e98811207744 (patch) | |
tree | 98206b6ff9d5e277fdeb606693a4e05a48adba8f /examples/maildirresource/libmaildir | |
parent | 0b233494a69b5e9cd86e91c60016a294e6c9ef50 (diff) | |
download | sink-2f0605ded80cd4c216b8cbaaf228e98811207744.tar.gz sink-2f0605ded80cd4c216b8cbaaf228e98811207744.zip |
Ensure maildir flagchanges work completely
Diffstat (limited to 'examples/maildirresource/libmaildir')
-rw-r--r-- | examples/maildirresource/libmaildir/maildir.cpp | 2 | ||||
-rw-r--r-- | examples/maildirresource/libmaildir/maildir.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/maildirresource/libmaildir/maildir.cpp b/examples/maildirresource/libmaildir/maildir.cpp index 3d4630f..f8ca606 100644 --- a/examples/maildirresource/libmaildir/maildir.cpp +++ b/examples/maildirresource/libmaildir/maildir.cpp | |||
@@ -560,7 +560,7 @@ QDateTime Maildir::lastModified(const QString& key) const | |||
560 | return info.lastModified(); | 560 | return info.lastModified(); |
561 | } | 561 | } |
562 | 562 | ||
563 | QByteArray Maildir::readEntryHeadersFromFile(const QString& file) const | 563 | QByteArray Maildir::readEntryHeadersFromFile(const QString& file) |
564 | { | 564 | { |
565 | QByteArray result; | 565 | QByteArray result; |
566 | 566 | ||
diff --git a/examples/maildirresource/libmaildir/maildir.h b/examples/maildirresource/libmaildir/maildir.h index a89a832..42d53e6 100644 --- a/examples/maildirresource/libmaildir/maildir.h +++ b/examples/maildirresource/libmaildir/maildir.h | |||
@@ -184,7 +184,7 @@ public: | |||
184 | * Return the contents of the headers section of the file the maildir with the given @p file, that | 184 | * Return the contents of the headers section of the file the maildir with the given @p file, that |
185 | * is a full path to the file. You can get it by using findRealKey(key) . | 185 | * is a full path to the file. You can get it by using findRealKey(key) . |
186 | */ | 186 | */ |
187 | QByteArray readEntryHeadersFromFile( const QString& file ) const; | 187 | static QByteArray readEntryHeadersFromFile( const QString& file ); |
188 | 188 | ||
189 | /** | 189 | /** |
190 | * Return the contents of the headers section of the file the maildir with the given @p key. | 190 | * Return the contents of the headers section of the file the maildir with the given @p key. |