summaryrefslogtreecommitdiffstats
path: root/Source/cmDepends.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-03-15 16:02:08 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-03-15 16:02:08 (GMT)
commit3d96e522617647665d7e99919ba71d34b1db870c (patch)
tree2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmDepends.h
parent609af5c969be6edf087498f983ccd7d3ac818a48 (diff)
downloadCMake-3d96e522617647665d7e99919ba71d34b1db870c.zip
CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz
CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.bz2
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmDepends.h')
-rw-r--r--Source/cmDepends.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/Source/cmDepends.h b/Source/cmDepends.h
index 5196b6b..a0b1b6b 100644
--- a/Source/cmDepends.h
+++ b/Source/cmDepends.h
@@ -36,10 +36,10 @@ public:
cmDepends();
/** at what level will the compile be done from */
- void SetCompileDirectory(const char *dir) {m_CompileDirectory = dir;};
+ void SetCompileDirectory(const char *dir) {this->CompileDirectory = dir;};
/** should this be verbose in its output */
- void SetVerbose(bool verb) { m_Verbose = verb; }
+ void SetVerbose(bool verb) { this->Verbose = verb; }
/** Virtual destructor to cleanup subclasses properly. */
virtual ~cmDepends();
@@ -55,7 +55,8 @@ public:
void Clear(const char *file);
/** Set the file comparison object */
- void SetFileComparison(cmFileTimeComparison* fc) { m_FileComparison = fc; }
+ void SetFileComparison(cmFileTimeComparison* fc) {
+ this->FileComparison = fc; }
protected:
@@ -70,16 +71,16 @@ protected:
virtual bool CheckDependencies(std::istream& internalDepends);
// The directory in which the build rule for the target file is executed.
- std::string m_Directory;
- std::string m_CompileDirectory;
+ std::string Directory;
+ std::string CompileDirectory;
// Flag for verbose output.
- bool m_Verbose;
- cmFileTimeComparison* m_FileComparison;
+ bool Verbose;
+ cmFileTimeComparison* FileComparison;
- size_t m_MaxPath;
- char* m_Dependee;
- char* m_Depender;
+ size_t MaxPath;
+ char* Dependee;
+ char* Depender;
private:
cmDepends(cmDepends const&); // Purposely not implemented.