aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testUtils.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 /tests/testUtils.cpp
parentReissue EHLO after successful STARTTLS. (diff)
downloadvmime-0894c989596feb8d97d582e87cca021339cc26cd.tar.gz
vmime-0894c989596feb8d97d582e87cca021339cc26cd.zip
Renamed 'vmime::platformDependant' to 'vmime::platform'.
Diffstat (limited to 'tests/testUtils.cpp')
-rw-r--r--tests/testUtils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testUtils.cpp b/tests/testUtils.cpp
index 34d945c9..a774068d 100644
--- a/tests/testUtils.cpp
+++ b/tests/testUtils.cpp
@@ -158,13 +158,13 @@ testTimeoutHandler::testTimeoutHandler(const unsigned int delay)
const bool testTimeoutHandler::isTimeOut()
{
- return (vmime::platformDependant::getHandler()->getUnixTime() - m_start) >= m_delay;
+ return (vmime::platform::getHandler()->getUnixTime() - m_start) >= m_delay;
}
void testTimeoutHandler::resetTimeOut()
{
- m_start = vmime::platformDependant::getHandler()->getUnixTime();
+ m_start = vmime::platform::getHandler()->getUnixTime();
}