diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-11 18:05:45 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-11 18:05:45 (GMT) |
commit | bef93dc5c1cd7985013c9df096efbaa9b79dd7ac (patch) | |
tree | 4c028cecff3e8b237edf794b93852e42fefa2e1b /Source/cmakewizard.h | |
parent | bfdf8f7dcdbefe408adecd903fd669f62ad4815b (diff) | |
download | CMake-bef93dc5c1cd7985013c9df096efbaa9b79dd7ac.zip CMake-bef93dc5c1cd7985013c9df096efbaa9b79dd7ac.tar.gz CMake-bef93dc5c1cd7985013c9df096efbaa9b79dd7ac.tar.bz2 |
Couple of changes: cache variables now have a map of properties. ADVANCED and HELPSTRING are now properties of cache variable, IsAdvanced is gone, so is GetCacheEntry, since cache entries are now all private. To access them, you use the iterator. -ADVANCED cache entries are gone and are replaced by the property of cache variables. The cache file still looks the same, but the -ADVANCED cache entries are created when writing file. MarkAsAdvanced and VariableRequires are fixed. So are curses gui and wizard
Diffstat (limited to 'Source/cmakewizard.h')
-rw-r--r-- | Source/cmakewizard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmakewizard.h b/Source/cmakewizard.h index b8d21bc..9b0b5eb 100644 --- a/Source/cmakewizard.h +++ b/Source/cmakewizard.h @@ -31,7 +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::CacheEntry & entry, + virtual void AskUser(const char* key, cmCacheManager::CacheIterator& iter, cmCacheManager *cm); ///! Show a message to wait for cmake to run. virtual void ShowMessage(const char*); |