summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-10-22 17:28:49 (GMT)
committerKen Martin <ken.martin@kitware.com>2007-10-22 17:28:49 (GMT)
commitcc6f53b61f59d6f3ac92e9af14710d4bd700d4ba (patch)
tree24465443cce1a79824ba548057e9f9ab72c859ce /Source/cmGlobalXCodeGenerator.cxx
parent6cdf03250568c2150094cddfb6542945903b41a1 (diff)
downloadCMake-cc6f53b61f59d6f3ac92e9af14710d4bd700d4ba.zip
CMake-cc6f53b61f59d6f3ac92e9af14710d4bd700d4ba.tar.gz
CMake-cc6f53b61f59d6f3ac92e9af14710d4bd700d4ba.tar.bz2
ENH: change to make the documentation class more generic, about halfway there, also provides secitons for Variables now
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index f4895d1..2a974fa 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2726,9 +2726,9 @@ cmGlobalXCodeGenerator::WriteXCodePBXProj(std::ostream& fout,
void cmGlobalXCodeGenerator::GetDocumentation(cmDocumentationEntry& entry)
const
{
- entry.name = this->GetName();
- entry.brief = "Generate XCode project files.";
- entry.full = "";
+ entry.Name = this->GetName();
+ entry.Brief = "Generate XCode project files.";
+ entry.Full = "";
}
//----------------------------------------------------------------------------