From daa37f116340fa86c1a511847fe65ad999095fa0 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Fri, 12 May 2006 13:53:21 -0400 Subject: STYLE: fix line length --- Source/cmSetTestsPropertiesCommand.cxx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Source/cmSetTestsPropertiesCommand.cxx') diff --git a/Source/cmSetTestsPropertiesCommand.cxx b/Source/cmSetTestsPropertiesCommand.cxx index c39f722ca8..f1f571a39f 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; -- cgit v1.2.1