diff options
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; }; |