summaryrefslogtreecommitdiffstats
path: root/Source/cmSetTestsPropertiesCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-12 17:53:21 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-12 17:53:21 (GMT)
commitdaa37f116340fa86c1a511847fe65ad999095fa0 (patch)
treec7b5e27c5bc3407266dca8ea5c987ff32a81b5a2 /Source/cmSetTestsPropertiesCommand.cxx
parent2bb24565e5fb9ba99aa3164332a81504a7eb51b0 (diff)
downloadCMake-daa37f116340fa86c1a511847fe65ad999095fa0.zip
CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.gz
CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.bz2
STYLE: fix line length
Diffstat (limited to 'Source/cmSetTestsPropertiesCommand.cxx')
-rw-r--r--Source/cmSetTestsPropertiesCommand.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmSetTestsPropertiesCommand.cxx b/Source/cmSetTestsPropertiesCommand.cxx
index c39f722..f1f571a 100644
--- a/Source/cmSetTestsPropertiesCommand.cxx
+++ b/Source/cmSetTestsPropertiesCommand.cxx
@@ -62,13 +62,15 @@ bool cmSetTestsPropertiesCommand::InitialPass(
}
else
{
- this->SetError("called with illegal arguments, maybe missing a PROPERTIES specifier?");
+ this->SetError("called with illegal arguments, maybe "
+ "missing a PROPERTIES specifier?");
return false;
}
}
if(propertyPairs.size() == 0)
{
- this->SetError("called with illegal arguments, maybe missing a PROPERTIES specifier?");
+ this->SetError("called with illegal arguments, maybe "
+ "missing a PROPERTIES specifier?");
return false;
}
@@ -89,7 +91,8 @@ bool cmSetTestsPropertiesCommand::InitialPass(
// now loop through all the props and set them
for (k = 0; k < propertyPairs.size(); k = k + 2)
{
- test->SetProperty(propertyPairs[k].c_str(),propertyPairs[k+1].c_str());
+ test->SetProperty(propertyPairs[k].c_str(),
+ propertyPairs[k+1].c_str());
}
found = true;
break;