summaryrefslogtreecommitdiffstats
path: root/Source/cmVTKWrapTclCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-03-10 18:54:57 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-03-10 18:54:57 (GMT)
commit89e5fc63fec560bec27d8517cc74ec41232736a0 (patch)
treee4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmVTKWrapTclCommand.cxx
parent509e383aacb65a501b20ce9a5520a31daff152e3 (diff)
downloadCMake-89e5fc63fec560bec27d8517cc74ec41232736a0.zip
CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz
CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.bz2
STYLE: fix line lengths
Diffstat (limited to 'Source/cmVTKWrapTclCommand.cxx')
-rw-r--r--Source/cmVTKWrapTclCommand.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmVTKWrapTclCommand.cxx b/Source/cmVTKWrapTclCommand.cxx
index 2daad71..a7c1511 100644
--- a/Source/cmVTKWrapTclCommand.cxx
+++ b/Source/cmVTKWrapTclCommand.cxx
@@ -163,7 +163,8 @@ void cmVTKWrapTclCommand::FinalPass()
{
commandLine.push_back(hints);
}
- commandLine.push_back((m_WrapClasses[classNum].GetPropertyAsBool("ABSTRACT") ? "0" : "1"));
+ commandLine.push_back(
+ (m_WrapClasses[classNum].GetPropertyAsBool("ABSTRACT") ? "0" : "1"));
std::string res = m_Makefile->GetCurrentOutputDirectory();
res += "/";
res += m_WrapClasses[classNum].GetSourceName() + ".cxx";
@@ -225,7 +226,8 @@ bool cmVTKWrapTclCommand::WriteInit(const char *kitName,
FILE *fout = fopen(tempOutputFile.c_str(),"w");
if (!fout)
{
- cmSystemTools::Error("Failed to open TclInit file for ", tempOutputFile.c_str());
+ cmSystemTools::Error("Failed to open TclInit file for ",
+ tempOutputFile.c_str());
cmSystemTools::ReportLastSystemError("");
return false;
}