summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmakewizard.cxx7
-rw-r--r--Source/cmakewizard.h3
2 files changed, 4 insertions, 6 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;
}
}
diff --git a/Source/cmakewizard.h b/Source/cmakewizard.h
index 9b0b5eb..a8f98d5 100644
--- a/Source/cmakewizard.h
+++ b/Source/cmakewizard.h
@@ -31,8 +31,7 @@ public:
/**
* Prompt the User for a new value for key, the answer is put in entry.
*/
- virtual void AskUser(const char* key, cmCacheManager::CacheIterator& iter,
- cmCacheManager *cm);
+ virtual void AskUser(const char* key, cmCacheManager::CacheIterator& iter);
///! Show a message to wait for cmake to run.
virtual void ShowMessage(const char*);