diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-10 20:03:09 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-10 20:03:09 (GMT) |
commit | 862f5df25c509e2df59d00597b0c4b4d14cf5eaa (patch) | |
tree | 79e19e06c0961f43690788cac9c2f23b4931a2cf /Source/CTest/cmCTestSleepCommand.cxx | |
parent | c0161e9e57321f283fc88812779d627fb722a40a (diff) | |
download | CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.zip CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.tar.gz CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.tar.bz2 |
STYLE: Fix some style issues
Diffstat (limited to 'Source/CTest/cmCTestSleepCommand.cxx')
-rw-r--r-- | Source/CTest/cmCTestSleepCommand.cxx | 4 |
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; } |