diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:02:08 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:02:08 (GMT) |
commit | 3d96e522617647665d7e99919ba71d34b1db870c (patch) | |
tree | 2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmTest.h | |
parent | 609af5c969be6edf087498f983ccd7d3ac818a48 (diff) | |
download | CMake-3d96e522617647665d7e99919ba71d34b1db870c.zip CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.bz2 |
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmTest.h')
-rw-r--r-- | Source/cmTest.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmTest.h b/Source/cmTest.h index ac1087f..2f12835 100644 --- a/Source/cmTest.h +++ b/Source/cmTest.h @@ -34,13 +34,13 @@ public: ///! Set the test name void SetName(const char* name); - const char* GetName() const { return m_Name.c_str(); } + const char* GetName() const { return this->Name.c_str(); } void SetCommand(const char* command); - const char* GetCommand() const { return m_Command.c_str(); } + const char* GetCommand() const { return this->Command.c_str(); } void SetArguments(const std::vector<cmStdString>& args); const std::vector<cmStdString>& GetArguments() const { - return m_Args; + return this->Args; } /** @@ -54,14 +54,14 @@ public: bool GetPropertyAsBool(const char *prop) const; const std::map<cmStdString,cmStdString>& GetProperties() const { - return m_Properties; + return this->Properties; } private: - std::map<cmStdString,cmStdString> m_Properties; - cmStdString m_Name; - cmStdString m_Command; - std::vector<cmStdString> m_Args; + std::map<cmStdString,cmStdString> Properties; + cmStdString Name; + cmStdString Command; + std::vector<cmStdString> Args; }; #endif |