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/cmLocalVisualStudio7Generator.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/cmLocalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.h b/Source/cmLocalVisualStudio7Generator.h index 13ff3df..cc6cd4f 100644 --- a/Source/cmLocalVisualStudio7Generator.h +++ b/Source/cmLocalVisualStudio7Generator.h @@ -58,10 +58,10 @@ public: */ std::vector<std::string> GetCreatedProjectNames() { - return m_CreatedProjectNames; + return this->CreatedProjectNames; } - void SetVersion71() {m_Version = 71;} - void SetVersion8() {m_Version = 8;} + void SetVersion71() {this->Version = 71;} + void SetVersion8() {this->Version = 8;} virtual void ConfigureFinalPass(); private: void FillFlagMapFromCommandFlags(std::map<cmStdString, cmStdString>& flagMap, @@ -114,11 +114,11 @@ private: const char *libName, std::vector<std::string> *configs); virtual std::string GetTargetDirectory(cmTarget&); - std::vector<std::string> m_CreatedProjectNames; - std::string m_LibraryOutputPath; - std::string m_ExecutableOutputPath; - std::string m_ModuleDefinitionFile; - int m_Version; + std::vector<std::string> CreatedProjectNames; + std::string LibraryOutputPath; + std::string ExecutableOutputPath; + std::string ModuleDefinitionFile; + int Version; }; #endif |