summaryrefslogtreecommitdiffstats
path: root/Source/cmXCodeObject.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-12 18:36:39 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-12 18:36:39 (GMT)
commitbf5ed9b27b5ce80348de2ec283c7c13893a00360 (patch)
tree3b90c5eead00de46c7c140f83c374886c3f3a34e /Source/cmXCodeObject.cxx
parentcac30b5ff8f7034b5290700a4dee28c84e001ac9 (diff)
downloadCMake-bf5ed9b27b5ce80348de2ec283c7c13893a00360.zip
CMake-bf5ed9b27b5ce80348de2ec283c7c13893a00360.tar.gz
CMake-bf5ed9b27b5ce80348de2ec283c7c13893a00360.tar.bz2
STYLE: fix line length
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r--Source/cmXCodeObject.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx
index bd0d8d6..37d51a5 100644
--- a/Source/cmXCodeObject.cxx
+++ b/Source/cmXCodeObject.cxx
@@ -39,7 +39,8 @@ cmXCodeObject::cmXCodeObject(PBXType ptype, Type type)
}
else
{
- this->Id = "Temporary cmake object, should not be refered to in xcode file";
+ this->Id =
+ "Temporary cmake object, should not be refered to in xcode file";
}
cmSystemTools::ReplaceString(this->Id, "0x", "");
this->Id = cmSystemTools::UpperCase(this->Id);
@@ -73,7 +74,8 @@ void cmXCodeObject::Print(std::ostream& out)
{
std::string separator = "\n";
int indentFactor = 1;
- if(this->Version > 15 && (this->IsA == PBXFileReference || this->IsA == PBXBuildFile))
+ if(this->Version > 15
+ && (this->IsA == PBXFileReference || this->IsA == PBXBuildFile))
{
separator = " ";
indentFactor = 0;
@@ -92,7 +94,8 @@ void cmXCodeObject::Print(std::ostream& out)
std::map<cmStdString, cmXCodeObject*>::iterator i;
cmXCodeObject::Indent(3*indentFactor, out);
out << "isa = " << PBXTypeNames[this->IsA] << ";" << separator;
- for(i = this->ObjectAttributes.begin(); i != this->ObjectAttributes.end(); ++i)
+ for(i = this->ObjectAttributes.begin();
+ i != this->ObjectAttributes.end(); ++i)
{
cmXCodeObject* object = i->second;
if(i->first != "isa")