diff options
Diffstat (limited to 'src/platforms/windows')
-rw-r--r-- | src/platforms/windows/windowsHandler.cpp | 4 | ||||
-rw-r--r-- | src/platforms/windows/windowsSocket.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/platforms/windows/windowsHandler.cpp b/src/platforms/windows/windowsHandler.cpp index d6f28037..19788642 100644 --- a/src/platforms/windows/windowsHandler.cpp +++ b/src/platforms/windows/windowsHandler.cpp @@ -233,14 +233,14 @@ const unsigned int windowsHandler::getProcessId() const #if VMIME_HAVE_MESSAGING_FEATURES -vmime::messaging::socketFactory* windowsHandler::getSocketFactory +vmime::net::socketFactory* windowsHandler::getSocketFactory (const vmime::string& /* name */) const { return (m_socketFactory); } -vmime::messaging::timeoutHandlerFactory* windowsHandler::getTimeoutHandlerFactory +vmime::net::timeoutHandlerFactory* windowsHandler::getTimeoutHandlerFactory (const vmime::string& /* name */) const { // Not used by default diff --git a/src/platforms/windows/windowsSocket.cpp b/src/platforms/windows/windowsSocket.cpp index b325eedd..bedfb07c 100644 --- a/src/platforms/windows/windowsSocket.cpp +++ b/src/platforms/windows/windowsSocket.cpp @@ -167,7 +167,7 @@ void windowsSocket::sendRaw(const char* buffer, const int count) // posixSocketFactory // -ref <vmime::messaging::socket> windowsSocketFactory::create() +ref <vmime::net::socket> windowsSocketFactory::create() { return vmime::create <windowsSocket>(); } |