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/cmCTestGenericHandler.h | |
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/cmCTestGenericHandler.h')
-rw-r--r-- | Source/CTest/cmCTestGenericHandler.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h index 4b8e699..9efa113 100644 --- a/Source/CTest/cmCTestGenericHandler.h +++ b/Source/CTest/cmCTestGenericHandler.h @@ -36,7 +36,7 @@ public: /** * If verbose then more informaiton is printed out */ - void SetVerbose(bool val) { m_HandlerVerbose = val; } + void SetVerbose(bool val) { this->HandlerVerbose = val; } /** * Populate internals from CTest custom scripts @@ -64,8 +64,8 @@ public: /** * Set the CTest instance */ - void SetCTestInstance(cmCTest* ctest) { m_CTest = ctest; } - cmCTest* GetCTestInstance() { return m_CTest; } + void SetCTestInstance(cmCTest* ctest) { this->CTest = ctest; } + cmCTest* GetCTestInstance() { return this->CTest; } /** * Construct handler @@ -80,22 +80,22 @@ public: void SetCommand(cmCTestCommand* command) { - m_Command = command; + this->Command = command; } - void SetSubmitIndex(int idx) { m_SubmitIndex = idx; } - int GetSubmitIndex() { return m_SubmitIndex; } + void SetSubmitIndex(int idx) { this->SubmitIndex = idx; } + int GetSubmitIndex() { return this->SubmitIndex; } protected: bool StartResultingXML(const char* name, cmGeneratedFileStream& xofs); bool StartLogFile(const char* name, cmGeneratedFileStream& xofs); - bool m_HandlerVerbose; - cmCTest *m_CTest; - t_StringToString m_Options; + bool HandlerVerbose; + cmCTest *CTest; + t_StringToString Options; - cmCTestCommand* m_Command; - int m_SubmitIndex; + cmCTestCommand* Command; + int SubmitIndex; }; #endif |