summaryrefslogtreecommitdiff
path: root/Source/cmPropertyDefinition.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-09-17 09:08:58 -0400
committerBrad King <brad.king@kitware.com>2013-10-16 09:22:37 -0400
commit53ded5951537cd776ed5d1db7b2002bb580583be (patch)
tree93972bf253d7e977af3bd5a382247ba14bb0d53c /Source/cmPropertyDefinition.cxx
parent0c39a757da4988467bfb870a8cba7339c72fe1a9 (diff)
downloadcmake-53ded5951537cd776ed5d1db7b2002bb580583be.tar.gz
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.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmPropertyDefinition.cxx b/Source/cmPropertyDefinition.cxx
index 3aa9e94da4..abc57ce01e 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;
- }
}