diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-09-20 12:33:07 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-09-20 12:33:07 (GMT) |
commit | 40fa85883c0ac4111b4867477638d3a67d33eb12 (patch) | |
tree | b662154ecee568f2b3122b26691b5b21722fd703 /Source | |
parent | 2d979a87ba9607afab5ea7ad9623c67d68709e75 (diff) | |
download | CMake-40fa85883c0ac4111b4867477638d3a67d33eb12.zip CMake-40fa85883c0ac4111b4867477638d3a67d33eb12.tar.gz CMake-40fa85883c0ac4111b4867477638d3a67d33eb12.tar.bz2 |
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmDocumentation.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index 7f8c101..6c54254 100644 --- a/Source/cmDocumentation.cxx +++ b/Source/cmDocumentation.cxx @@ -465,8 +465,9 @@ bool cmDocumentation::CreateCustomModulesSection() { if (!sectionHasHeader) { - this->CustomModulesSection.Append(cmDocumentationCustomModulesHeader[0]); - sectionHasHeader = true; + this->CustomModulesSection.Append( + cmDocumentationCustomModulesHeader[0]); + sectionHasHeader = true; } this->CreateModuleDocsForDir(dir, this->CustomModulesSection); } @@ -498,7 +499,8 @@ void cmDocumentation::CreateModuleDocsForDir(cmsys::Directory& dir, std::string path = dir.GetPath(); path += "/"; path += fname; - this->CreateSingleModule(path.c_str(), moduleName.c_str(), moduleSection); + this->CreateSingleModule(path.c_str(), moduleName.c_str(), + moduleSection); } } } |