summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraCodeBlocksGenerator.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-20 12:36:16 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-20 12:36:16 (GMT)
commit55303d6dd27678dd1446f3836b0292053f856a4c (patch)
tree283dcb3c55acb9b2dce333ba6656aeb251a175d0 /Source/cmExtraCodeBlocksGenerator.cxx
parent38084147e1edec3ce70f4f3574b9114b12646613 (diff)
downloadCMake-55303d6dd27678dd1446f3836b0292053f856a4c.zip
CMake-55303d6dd27678dd1446f3836b0292053f856a4c.tar.gz
CMake-55303d6dd27678dd1446f3836b0292053f856a4c.tar.bz2
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r--Source/cmExtraCodeBlocksGenerator.cxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx
index 945d72a..92a306e 100644
--- a/Source/cmExtraCodeBlocksGenerator.cxx
+++ b/Source/cmExtraCodeBlocksGenerator.cxx
@@ -67,7 +67,8 @@ void cmExtraCodeBlocksGenerator::SetGlobalGenerator(
void cmExtraCodeBlocksGenerator::Generate()
{
- const cmMakefile* topLevelMakefile = this->GlobalGenerator->GetLocalGenerators()[0]->GetMakefile();
+ const cmMakefile* topLevelMakefile =
+ this->GlobalGenerator->GetLocalGenerators()[0]->GetMakefile();
std::string workspaceName = topLevelMakefile->GetProjectName();
std::string outputDir=topLevelMakefile->GetStartOutputDirectory();
@@ -119,7 +120,8 @@ void cmExtraCodeBlocksGenerator::Generate()
/* create the project file, if it already exists, merge it with the
existing one, otherwise create a new one */
-void cmExtraCodeBlocksGenerator::CreateProjectFile(const std::vector<cmLocalGenerator*>& lgs)
+void cmExtraCodeBlocksGenerator::CreateProjectFile(
+ const std::vector<cmLocalGenerator*>& lgs)
{
const cmMakefile* mf=lgs[0]->GetMakefile();
std::string outputDir=mf->GetStartOutputDirectory();
@@ -245,7 +247,7 @@ void cmExtraCodeBlocksGenerator
case cmTarget::SHARED_LIBRARY:
case cmTarget::MODULE_LIBRARY:
{
- const std::vector<cmSourceFile*>& sources=ti->second.GetSourceFiles();
+ const std::vector<cmSourceFile*>&sources=ti->second.GetSourceFiles();
for (std::vector<cmSourceFile*>::const_iterator si=sources.begin();
si!=sources.end(); si++)
{
@@ -258,7 +260,8 @@ void cmExtraCodeBlocksGenerator
}
}
- for (std::map<std::string, std::string>::const_iterator sit=sourceFiles.begin();
+ for (std::map<std::string, std::string>::const_iterator
+ sit=sourceFiles.begin();
sit!=sourceFiles.end();
++sit)
{