summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSleepCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CTest/cmCTestSleepCommand.cxx')
-rw-r--r--Source/CTest/cmCTestSleepCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestSleepCommand.cxx b/Source/CTest/cmCTestSleepCommand.cxx
index d3f0c6f..11108e8 100644
--- a/Source/CTest/cmCTestSleepCommand.cxx
+++ b/Source/CTest/cmCTestSleepCommand.cxx
@@ -34,7 +34,7 @@ bool cmCTestSleepCommand::InitialPass(
{
cmCTestScriptHandler::SleepInSeconds(time1);
// update the elapsed time since it could have slept for a while
- m_CTestScriptHandler->UpdateElapsedTime();
+ this->CTestScriptHandler->UpdateElapsedTime();
return true;
}
@@ -48,7 +48,7 @@ bool cmCTestSleepCommand::InitialPass(
duration = (time1 + duration - time2);
cmCTestScriptHandler::SleepInSeconds(duration);
// update the elapsed time since it could have slept for a while
- m_CTestScriptHandler->UpdateElapsedTime();
+ this->CTestScriptHandler->UpdateElapsedTime();
}
return true;
}