diff options
author | Brad King <brad.king@kitware.com> | 2013-09-17 13:08:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-16 13:22:37 (GMT) |
commit | 53ded5951537cd776ed5d1db7b2002bb580583be (patch) | |
tree | 93972bf253d7e977af3bd5a382247ba14bb0d53c /Source/cmPropertyDefinition.cxx | |
parent | 0c39a757da4988467bfb870a8cba7339c72fe1a9 (diff) | |
download | CMake-53ded5951537cd776ed5d1db7b2002bb580583be.zip CMake-53ded5951537cd776ed5d1db7b2002bb580583be.tar.gz CMake-53ded5951537cd776ed5d1db7b2002bb580583be.tar.bz2 |
Drop unused builtin documentation APIs
Now that all DefineProperty documentation calls have been dropped, drop
the supporting APIs.
Diffstat (limited to 'Source/cmPropertyDefinition.cxx')
-rw-r--r-- | Source/cmPropertyDefinition.cxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmPropertyDefinition.cxx b/Source/cmPropertyDefinition.cxx index 3aa9e94..abc57ce 100644 --- a/Source/cmPropertyDefinition.cxx +++ b/Source/cmPropertyDefinition.cxx @@ -12,19 +12,10 @@ #include "cmPropertyDefinition.h" #include "cmSystemTools.h" -cmDocumentationEntry cmPropertyDefinition::GetDocumentation() const -{ - cmDocumentationEntry e; - e.Name = this->Name; - e.Brief = this->ShortDescription; - return e; -} - void cmPropertyDefinition ::DefineProperty(const char *name, cmProperty::ScopeType scope, const char *shortDescription, const char *fullDescription, - const char *sec, bool chain) { this->Name = name; @@ -38,9 +29,5 @@ void cmPropertyDefinition { this->FullDescription = fullDescription; } - if (sec) - { - this->DocumentationSection = sec; - } } |