diff options
author | Vincent Richard <[email protected]> | 2005-10-06 11:08:56 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-10-06 11:08:56 +0000 |
commit | ee46de08f7144af3e1101c7e505e01902b8c79a3 (patch) | |
tree | 76a4839e08d40c9807198326a2f02ec54980960c /src/net/pop3/POP3Store.cpp | |
parent | Moved MSVC-specific defines. (diff) | |
download | vmime-ee46de08f7144af3e1101c7e505e01902b8c79a3.tar.gz vmime-ee46de08f7144af3e1101c7e505e01902b8c79a3.zip |
Renamed 'progressionListener' to 'progressListener'.
Diffstat (limited to 'src/net/pop3/POP3Store.cpp')
-rw-r--r-- | src/net/pop3/POP3Store.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/pop3/POP3Store.cpp b/src/net/pop3/POP3Store.cpp index 1b15c9f6..29a22dcf 100644 --- a/src/net/pop3/POP3Store.cpp +++ b/src/net/pop3/POP3Store.cpp @@ -702,7 +702,7 @@ void POP3Store::sendRequest(const string& buffer, const bool end) void POP3Store::readResponse(string& buffer, const bool multiLine, - utility::progressionListener* progress) + utility::progressListener* progress) { bool foundTerminator = false; int current = 0, total = 0; @@ -777,7 +777,7 @@ void POP3Store::readResponse(string& buffer, const bool multiLine, // Check for terminator string (and strip it if present) foundTerminator = checkTerminator(buffer, multiLine); - // Notify progression + // Notify progress if (progress) { total = std::max(total, current); @@ -800,7 +800,7 @@ void POP3Store::readResponse(string& buffer, const bool multiLine, void POP3Store::readResponse(utility::outputStream& os, - utility::progressionListener* progress, const int predictedSize) + utility::progressListener* progress, const int predictedSize) { int current = 0, total = predictedSize; @@ -875,7 +875,7 @@ void POP3Store::readResponse(utility::outputStream& os, os.write(buffer, read); current += read; - // Notify progression + // Notify progress if (progress) { total = std::max(total, current); |