diff options
author | Vincent Richard <[email protected]> | 2006-10-11 14:52:41 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2006-10-11 14:52:41 +0000 |
commit | 0894c989596feb8d97d582e87cca021339cc26cd (patch) | |
tree | 75ac912b7b2355102a2c729e424aa504183fd66d /src/net/pop3/POP3Store.cpp | |
parent | Reissue EHLO after successful STARTTLS. (diff) | |
download | vmime-0894c989596feb8d97d582e87cca021339cc26cd.tar.gz vmime-0894c989596feb8d97d582e87cca021339cc26cd.zip |
Renamed 'vmime::platformDependant' to 'vmime::platform'.
Diffstat (limited to 'src/net/pop3/POP3Store.cpp')
-rw-r--r-- | src/net/pop3/POP3Store.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/pop3/POP3Store.cpp b/src/net/pop3/POP3Store.cpp index ba4a5254..10a67c4a 100644 --- a/src/net/pop3/POP3Store.cpp +++ b/src/net/pop3/POP3Store.cpp @@ -21,7 +21,7 @@ #include "vmime/net/pop3/POP3Folder.hpp" #include "vmime/exception.hpp" -#include "vmime/platformDependant.hpp" +#include "vmime/platform.hpp" #include "vmime/messageId.hpp" #include "vmime/security/digest/messageDigestFactory.hpp" #include "vmime/utility/filteredStream.hpp" @@ -773,7 +773,7 @@ void POP3Store::readResponse(string& buffer, const bool multiLine, if (receiveBuffer.empty()) // buffer is empty { - platformDependant::getHandler()->wait(); + platform::getHandler()->wait(); continue; } @@ -874,7 +874,7 @@ void POP3Store::readResponse(utility::outputStream& os, if (read == 0) // buffer is empty { - platformDependant::getHandler()->wait(); + platform::getHandler()->wait(); continue; } |