summaryrefslogtreecommitdiff
path: root/Source/cmProjectRule.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmProjectRule.h')
-rw-r--r--Source/cmProjectRule.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmProjectRule.h b/Source/cmProjectRule.h
index 0560ab120e..304bcb332c 100644
--- a/Source/cmProjectRule.h
+++ b/Source/cmProjectRule.h
@@ -57,7 +57,7 @@ public:
/**
* Succinct documentation.
*/
- virtual const char* TerseDocumentation()
+ virtual const char* GetTerseDocumentation()
{
return "Set a name for the entire project. One argument.";
}
@@ -65,11 +65,10 @@ public:
/**
* More documentation.
*/
- virtual const char* FullDocumentation()
+ virtual const char* GetFullDocumentation()
{
return
- "PROJECT(projectname)\n"
- "Set the name for the entire project. This takes one argument.";
+ "PROJECT(projectname)\n";
}
};