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/cmCursesWidget.h | |
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/cmCursesWidget.h')
-rw-r--r-- | Source/CursesDialog/cmCursesWidget.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/CursesDialog/cmCursesWidget.h b/Source/CursesDialog/cmCursesWidget.h index be83a2c..7fcabad 100644 --- a/Source/CursesDialog/cmCursesWidget.h +++ b/Source/CursesDialog/cmCursesWidget.h @@ -52,7 +52,7 @@ public: * Get the type of the widget (STRING, PATH etc...) */ cmCacheManager::CacheEntryType GetType() - { return m_Type; } + { return this->Type; } /** * If there are any, print the widget specific commands @@ -69,11 +69,11 @@ public: */ void SetPage(int page) { - m_Page = page; + this->Page = page; } int GetPage() { - return m_Page; + return this->Page; } friend class cmCursesMainForm; @@ -82,11 +82,11 @@ protected: cmCursesWidget(const cmCursesWidget& from); void operator=(const cmCursesWidget&); - cmCacheManager::CacheEntryType m_Type; - std::string m_Value; - FIELD* m_Field; + cmCacheManager::CacheEntryType Type; + std::string Value; + FIELD* Field; // The page in the main form this widget is in - int m_Page; + int Page; }; #endif // __cmCursesWidget_h |