diff options
Diffstat (limited to '')
-rw-r--r-- | src/messaging/pop3/POP3Store.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/messaging/pop3/POP3Store.cpp b/src/messaging/pop3/POP3Store.cpp index d6ece2a0..69e09bc6 100644 --- a/src/messaging/pop3/POP3Store.cpp +++ b/src/messaging/pop3/POP3Store.cpp @@ -311,7 +311,7 @@ void POP3Store::sendRequest(const string& buffer, const bool end) void POP3Store::readResponse(string& buffer, const bool multiLine, - progressionListener* progress) + utility::progressionListener* progress) { bool foundTerminator = false; int current = 0, total = 0; @@ -406,8 +406,8 @@ void POP3Store::readResponse(string& buffer, const bool multiLine, } -void POP3Store::readResponse(utility::outputStream& os, progressionListener* progress, - const int predictedSize) +void POP3Store::readResponse(utility::outputStream& os, + utility::progressionListener* progress, const int predictedSize) { bool foundTerminator = false; int current = 0, total = predictedSize; |