diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-16 15:44:55 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-16 15:44:55 (GMT) |
commit | fb5d92ea37b6b7cbd9eda84538ce072b90b80b73 (patch) | |
tree | 6368791fb74abffe3eee903cabf007b9bfed3599 /Source/CursesDialog/cmCursesLabelWidget.cxx | |
parent | 4b83a08b373e8dcb3a0b4b23390f747af167c864 (diff) | |
download | CMake-fb5d92ea37b6b7cbd9eda84538ce072b90b80b73.zip CMake-fb5d92ea37b6b7cbd9eda84538ce072b90b80b73.tar.gz CMake-fb5d92ea37b6b7cbd9eda84538ce072b90b80b73.tar.bz2 |
ENH: m_ cleanup for curses
Diffstat (limited to 'Source/CursesDialog/cmCursesLabelWidget.cxx')
-rw-r--r-- | Source/CursesDialog/cmCursesLabelWidget.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CursesDialog/cmCursesLabelWidget.cxx b/Source/CursesDialog/cmCursesLabelWidget.cxx index 737953a..577b16b 100644 --- a/Source/CursesDialog/cmCursesLabelWidget.cxx +++ b/Source/CursesDialog/cmCursesLabelWidget.cxx @@ -21,9 +21,9 @@ cmCursesLabelWidget::cmCursesLabelWidget(int width, int height, const std::string& name) : cmCursesWidget(width, height, left, top) { - field_opts_off(m_Field, O_EDIT); - field_opts_off(m_Field, O_ACTIVE); - field_opts_off(m_Field, O_STATIC); + field_opts_off(this->Field, O_EDIT); + field_opts_off(this->Field, O_ACTIVE); + field_opts_off(this->Field, O_STATIC); this->SetValue(name.c_str()); } |