summaryrefslogtreecommitdiffstats
path: root/examples/maildirresource/libmaildir
diff options
context:
space:
mode:
Diffstat (limited to 'examples/maildirresource/libmaildir')
-rw-r--r--examples/maildirresource/libmaildir/maildir.cpp2
-rw-r--r--examples/maildirresource/libmaildir/maildir.h2
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
563QByteArray Maildir::readEntryHeadersFromFile(const QString& file) const 563QByteArray 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.