From 40fa85883c0ac4111b4867477638d3a67d33eb12 Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Thu, 20 Sep 2007 08:33:07 -0400 Subject: [PATCH] STYLE: fix line lengths Alex --- Source/cmDocumentation.cxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index 7f8c101be0..6c54254288 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); } } }