summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog/cmCursesForm.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-03-16 15:44:55 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-03-16 15:44:55 (GMT)
commitfb5d92ea37b6b7cbd9eda84538ce072b90b80b73 (patch)
tree6368791fb74abffe3eee903cabf007b9bfed3599 /Source/CursesDialog/cmCursesForm.h
parent4b83a08b373e8dcb3a0b4b23390f747af167c864 (diff)
downloadCMake-fb5d92ea37b6b7cbd9eda84538ce072b90b80b73.zip
CMake-fb5d92ea37b6b7cbd9eda84538ce072b90b80b73.tar.gz
CMake-fb5d92ea37b6b7cbd9eda84538ce072b90b80b73.tar.bz2
ENH: m_ cleanup for curses
Diffstat (limited to 'Source/CursesDialog/cmCursesForm.h')
-rw-r--r--Source/CursesDialog/cmCursesForm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CursesDialog/cmCursesForm.h b/Source/CursesDialog/cmCursesForm.h
index f4c4e12..0573086 100644
--- a/Source/CursesDialog/cmCursesForm.h
+++ b/Source/CursesDialog/cmCursesForm.h
@@ -60,7 +60,7 @@ public:
// Return the FORM. Should be only used by low-level methods.
FORM* GetForm()
{
- return m_Form;
+ return this->Form;
}
static cmCursesForm* CurrentForm;
@@ -71,10 +71,10 @@ protected:
static std::ofstream DebugFile;
static bool Debug;
- cmCursesForm(const cmCursesForm& from);
+ cmCursesForm(const cmCursesForm& form);
void operator=(const cmCursesForm&);
- FORM* m_Form;
+ FORM* Form;
};
#endif // __cmCursesForm_h