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/cmGlob.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/cmGlob.h')
-rw-r--r-- | Source/cmGlob.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlob.h b/Source/cmGlob.h index 62e9d94..ad27a59 100644 --- a/Source/cmGlob.h +++ b/Source/cmGlob.h @@ -41,8 +41,8 @@ public: //! Set recurse to true to match subdirectories. void RecurseOn() { this->SetRecurse(true); } void RecurseOff() { this->SetRecurse(false); } - void SetRecurse(bool i) { m_Recurse = i; } - bool GetRecurse() { return m_Recurse; } + void SetRecurse(bool i) { this->Recurse = i; } + bool GetRecurse() { return this->Recurse; } protected: //! Process directory @@ -65,8 +65,8 @@ protected: //! Add regular expression void AddExpression(const char* expr); - cmGlobInternal* m_Internals; - bool m_Recurse; + cmGlobInternal* Internals; + bool Recurse; }; |