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/exception.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/exception.cpp')
-rw-r--r-- | src/exception.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/exception.cpp b/src/exception.cpp index 88b985e5..227fe7fd 100644 --- a/src/exception.cpp +++ b/src/exception.cpp @@ -239,15 +239,15 @@ const char* no_factory_available::name() const throw() { return "no_factory_avai // -// no_platform_dependant_handler +// no_platform_handler // -no_platform_dependant_handler::~no_platform_dependant_handler() throw() {} -no_platform_dependant_handler::no_platform_dependant_handler(const exception& other) - : exception("No platform-dependant handler installed.", other) {} +no_platform_handler::~no_platform_handler() throw() {} +no_platform_handler::no_platform_handler(const exception& other) + : exception("No platform handler installed.", other) {} -exception* no_platform_dependant_handler::clone() const { return new no_platform_dependant_handler(*this); } -const char* no_platform_dependant_handler::name() const throw() { return "no_platform_dependant_handler"; } +exception* no_platform_handler::clone() const { return new no_platform_handler(*this); } +const char* no_platform_handler::name() const throw() { return "no_platform_handler"; } // |