aboutsummaryrefslogtreecommitdiffstats
path: root/examples/example6.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2006-10-11 14:52:41 +0000
committerVincent Richard <[email protected]>2006-10-11 14:52:41 +0000
commit0894c989596feb8d97d582e87cca021339cc26cd (patch)
tree75ac912b7b2355102a2c729e424aa504183fd66d /examples/example6.cpp
parentReissue EHLO after successful STARTTLS. (diff)
downloadvmime-0894c989596feb8d97d582e87cca021339cc26cd.tar.gz
vmime-0894c989596feb8d97d582e87cca021339cc26cd.zip
Renamed 'vmime::platformDependant' to 'vmime::platform'.
Diffstat (limited to 'examples/example6.cpp')
-rw-r--r--examples/example6.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example6.cpp b/examples/example6.cpp
index 2783996a..984d14e0 100644
--- a/examples/example6.cpp
+++ b/examples/example6.cpp
@@ -273,7 +273,7 @@ static std::ostream& operator<<(std::ostream& os, const vmime::exception& e)
const vmime::exceptions::filesystem_exception& fse =
dynamic_cast <const vmime::exceptions::filesystem_exception&>(e);
- os << " path = " << vmime::platformDependant::getHandler()->
+ os << " path = " << vmime::platform::getHandler()->
getFileSystemFactory()->pathToString(fse.path()) << std::endl;
}
@@ -818,7 +818,7 @@ static const bool menu()
int main()
{
// VMime initialization
- vmime::platformDependant::setHandler<vmime::platforms::posix::posixHandler>();
+ vmime::platform::setHandler<vmime::platforms::posix::posixHandler>();
for (bool quit = false ; !quit ; )
{