diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-22 12:49:09 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-22 12:49:09 -0400 |
commit | 6cdf03250568c2150094cddfb6542945903b41a1 (patch) | |
tree | d2180686ef12105d6855203eded0505775b507ab /Source/cmGlobalVisualStudio6Generator.cxx | |
parent | cfb84d8562646662cfee9622f657e8eacdd49f8c (diff) | |
download | cmake-6cdf03250568c2150094cddfb6542945903b41a1.tar.gz |
ENH: change to make the documentation class more generic, about halfway there, also provides secitons for Variables now
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index 860cbffad8..f7b4137b92 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -483,9 +483,9 @@ void cmGlobalVisualStudio6Generator::WriteDSWHeader(std::ostream& fout) void cmGlobalVisualStudio6Generator ::GetDocumentation(cmDocumentationEntry& entry) const { - entry.name = this->GetName(); - entry.brief = "Generates Visual Studio 6 project files."; - entry.full = ""; + entry.Name = this->GetName(); + entry.Brief = "Generates Visual Studio 6 project files."; + entry.Full = ""; } //---------------------------------------------------------------------------- |