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/maildir/maildirMessage.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/maildir/maildirMessage.cpp')
| -rw-r--r-- | src/net/maildir/maildirMessage.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/maildir/maildirMessage.cpp b/src/net/maildir/maildirMessage.cpp index 6c621f21..aaf258a8 100644 --- a/src/net/maildir/maildirMessage.cpp +++ b/src/net/maildir/maildirMessage.cpp @@ -25,7 +25,7 @@ #include "vmime/message.hpp" #include "vmime/exception.hpp" -#include "vmime/platformDependant.hpp" +#include "vmime/platform.hpp" namespace vmime { @@ -342,7 +342,7 @@ void maildirMessage::extractImpl(utility::outputStream& os, utility::progressLis { ref <const maildirFolder> folder = m_folder.acquire(); - utility::fileSystemFactory* fsf = platformDependant::getHandler()->getFileSystemFactory(); + utility::fileSystemFactory* fsf = platform::getHandler()->getFileSystemFactory(); const utility::file::path path = folder->getMessageFSPath(m_num); ref <utility::file> file = fsf->create(path); @@ -389,7 +389,7 @@ void maildirMessage::fetchPartHeader(ref <part> p) ref <maildirPart> mp = p.dynamicCast <maildirPart>(); - utility::fileSystemFactory* fsf = platformDependant::getHandler()->getFileSystemFactory(); + utility::fileSystemFactory* fsf = platform::getHandler()->getFileSystemFactory(); const utility::file::path path = folder->getMessageFSPath(m_num); ref <utility::file> file = fsf->create(path); @@ -426,7 +426,7 @@ void maildirMessage::fetch(ref <maildirFolder> msgFolder, const int options) if (folder != msgFolder) throw exceptions::folder_not_found(); - utility::fileSystemFactory* fsf = platformDependant::getHandler()->getFileSystemFactory(); + utility::fileSystemFactory* fsf = platform::getHandler()->getFileSystemFactory(); const utility::file::path path = folder->getMessageFSPath(m_num); ref <utility::file> file = fsf->create(path); |
