diff options
Diffstat (limited to 'vmime/net/message.hpp')
| -rw-r--r-- | vmime/net/message.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vmime/net/message.hpp b/vmime/net/message.hpp index 1ec97b93..7f77747e 100644 --- a/vmime/net/message.hpp +++ b/vmime/net/message.hpp @@ -27,7 +27,7 @@ #include "vmime/header.hpp" -#include "vmime/utility/progressionListener.hpp" +#include "vmime/utility/progressListener.hpp" #include "vmime/utility/stream.hpp" @@ -256,14 +256,14 @@ public: * \warning Partial fetch might not be supported by the underlying protocol. * * @param os output stream in which to write message data - * @param progress progression listener, or NULL if not used + * @param progress progress listener, or NULL if not used * @param start index of the first byte to retrieve (used for partial fetch) * @param length number of bytes to retrieve (used for partial fetch) * @param peek if true, try not to mark the message as read. This may not * be supported by the protocol (IMAP supports this), but it will NOT throw * an exception if not supported. */ - virtual void extract(utility::outputStream& os, utility::progressionListener* progress = NULL, const int start = 0, const int length = -1, const bool peek = false) const = 0; + virtual void extract(utility::outputStream& os, utility::progressListener* progress = NULL, const int start = 0, const int length = -1, const bool peek = false) const = 0; /** Extract the specified MIME part of the message (header + contents). * @@ -271,14 +271,14 @@ public: * * @param p part to extract * @param os output stream in which to write part data - * @param progress progression listener, or NULL if not used + * @param progress progress listener, or NULL if not used * @param start index of the first byte to retrieve (used for partial fetch) * @param length number of bytes to retrieve (used for partial fetch) * @param peek if true, try not to mark the message as read. This may not * be supported by the protocol (IMAP supports this), but it will NOT throw * an exception if not supported. */ - virtual void extractPart(ref <const part> p, utility::outputStream& os, utility::progressionListener* progress = NULL, const int start = 0, const int length = -1, const bool peek = false) const = 0; + virtual void extractPart(ref <const part> p, utility::outputStream& os, utility::progressListener* progress = NULL, const int start = 0, const int length = -1, const bool peek = false) const = 0; /** Fetch the MIME header for the specified part. * |
