summaryrefslogtreecommitdiffstats
path: root/Source/cmGlob.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/cmGlob.h
parent609af5c969be6edf087498f983ccd7d3ac818a48 (diff)
downloadCMake-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.h8
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;
};