summaryrefslogtreecommitdiffstats
path: root/Source/cmake.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2010-08-25 16:36:21 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2010-09-01 17:08:14 (GMT)
commit4ff03402fc137bf5624d4a71c1ad3b177e5ceb53 (patch)
tree30fc83fbf66af3220e2b13301cea6390a11d4c50 /Source/cmake.h
parentd7999e9b294f93f68b5ec9e3efd8017fad3f05d9 (diff)
downloadCMake-4ff03402fc137bf5624d4a71c1ad3b177e5ceb53.zip
CMake-4ff03402fc137bf5624d4a71c1ad3b177e5ceb53.tar.gz
CMake-4ff03402fc137bf5624d4a71c1ad3b177e5ceb53.tar.bz2
Rename find-unused to warn-unused
Diffstat (limited to 'Source/cmake.h')
-rw-r--r--Source/cmake.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index 3a53d48..7304d94 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -308,8 +308,8 @@ class cmake
void SetTrace(bool b) { this->Trace = b;}
bool GetWarnUninitialized() { return this->WarnUninitialized;}
void SetWarnUninitialized(bool b) { this->WarnUninitialized = b;}
- bool GetFindUnused() { return this->FindUnused;}
- void SetFindUnused(bool b) { this->FindUnused = b;}
+ bool GetWarnUnused() { return this->WarnUnused;}
+ void SetWarnUnused(bool b) { this->WarnUnused = b;}
bool GetDefaultToUsed() { return this->DefaultToUsed;}
void SetDefaultToUsed(bool b) { this->DefaultToUsed = b;}
// Define a property
@@ -450,7 +450,7 @@ private:
bool DebugOutput;
bool Trace;
bool WarnUninitialized;
- bool FindUnused;
+ bool WarnUnused;
bool DefaultToUsed;
std::string CMakeEditCommand;
std::string CMakeCommand;