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/charset.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/charset.cpp')
-rw-r--r-- | src/charset.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.cpp b/src/charset.cpp index 21e6005e..fb9cb6cc 100644 --- a/src/charset.cpp +++ b/src/charset.cpp @@ -23,7 +23,7 @@ #include "vmime/charset.hpp" #include "vmime/exception.hpp" -#include "vmime/platformDependant.hpp" +#include "vmime/platform.hpp" #include "vmime/utility/stringUtils.hpp" @@ -93,7 +93,7 @@ void charset::convert(const string& in, string& out, const charset& source, cons const charset charset::getLocaleCharset() { - return (platformDependant::getHandler()->getLocaleCharset()); + return (platform::getHandler()->getLocaleCharset()); } |