summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog/cmCursesForm.h
diff options
context:
space:
mode:
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