diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-12 13:00:30 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-12 13:00:30 (GMT) |
commit | 628625af7219dcb54765bbc62136b543502ecbec (patch) | |
tree | d320ac3cf43e17d1b977e1347a0b3cb9e59e310a /Source/cmakewizard.cxx | |
parent | c478520cabd9e0e930c37337a786d74834ba1130 (diff) | |
download | CMake-628625af7219dcb54765bbc62136b543502ecbec.zip CMake-628625af7219dcb54765bbc62136b543502ecbec.tar.gz CMake-628625af7219dcb54765bbc62136b543502ecbec.tar.bz2 |
Simplify code. Since we access cache entry through the iterator, we do not need the cache manager any more
Diffstat (limited to 'Source/cmakewizard.cxx')
-rw-r--r-- | Source/cmakewizard.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmakewizard.cxx b/Source/cmakewizard.cxx index 2144a41..7ff4842 100644 --- a/Source/cmakewizard.cxx +++ b/Source/cmakewizard.cxx @@ -24,8 +24,7 @@ cmakewizard::cmakewizard() } -void cmakewizard::AskUser(const char* key, cmCacheManager::CacheIterator& iter, - cmCacheManager *cacheManager) +void cmakewizard::AskUser(const char* key, cmCacheManager::CacheIterator& iter) { std::cout << "Variable Name: " << key << "\n"; const char* helpstring = iter.GetProperty("HELPSTRING"); @@ -118,7 +117,7 @@ void cmakewizard::RunWizard(std::vector<std::string> const& args) { if(m_ShowAdvanced || !i.GetPropertyAsBool("ADVANCED")) { - this->AskUser(key.c_str(), i, cachem); + this->AskUser(key.c_str(), i); asked = true; } } @@ -127,7 +126,7 @@ void cmakewizard::RunWizard(std::vector<std::string> const& args) { if(m_ShowAdvanced || !i.GetPropertyAsBool("ADVANCED")) { - this->AskUser(key.c_str(), i, cachem); + this->AskUser(key.c_str(), i); asked = true; } } |