diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
commit | 89e5fc63fec560bec27d8517cc74ec41232736a0 (patch) | |
tree | e4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmVTKWrapJavaCommand.cxx | |
parent | 509e383aacb65a501b20ce9a5520a31daff152e3 (diff) | |
download | CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.zip CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.bz2 |
STYLE: fix line lengths
Diffstat (limited to 'Source/cmVTKWrapJavaCommand.cxx')
-rw-r--r-- | Source/cmVTKWrapJavaCommand.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Source/cmVTKWrapJavaCommand.cxx b/Source/cmVTKWrapJavaCommand.cxx index 0cb139f..f20bbc3 100644 --- a/Source/cmVTKWrapJavaCommand.cxx +++ b/Source/cmVTKWrapJavaCommand.cxx @@ -49,7 +49,8 @@ bool cmVTKWrapJavaCommand::InitialPass(std::vector<std::string> const& argsIn) } // Prepare java dependency file - const char* resultDirectory = m_Makefile->GetRequiredDefinition("VTK_JAVA_HOME"); + const char* resultDirectory = + m_Makefile->GetRequiredDefinition("VTK_JAVA_HOME"); std::string res = m_Makefile->GetCurrentOutputDirectory(); std::string depFileName = res + "/JavaDependencies.cmake"; std::ofstream depFile(depFileName.c_str()); @@ -113,7 +114,8 @@ void cmVTKWrapJavaCommand::FinalPass() const char* wjava = m_Makefile->GetRequiredDefinition("VTK_WRAP_JAVA_EXE"); const char* pjava = m_Makefile->GetRequiredDefinition("VTK_PARSE_JAVA_EXE"); const char* hints = m_Makefile->GetDefinition("VTK_WRAP_HINTS"); - const char* resultDirectory = m_Makefile->GetRequiredDefinition("VTK_JAVA_HOME"); + const char* resultDirectory = + m_Makefile->GetRequiredDefinition("VTK_JAVA_HOME"); // wrap all the .h files depends.push_back(wjava); @@ -143,7 +145,8 @@ void cmVTKWrapJavaCommand::FinalPass() { commandLineW.push_back(hints); } - commandLineW.push_back((m_WrapClasses[classNum].GetPropertyAsBool("ABSTRACT") ? "0" : "1")); + commandLineW.push_back( + (m_WrapClasses[classNum].GetPropertyAsBool("ABSTRACT") ? "0" : "1")); commandLineW.push_back(res); cmCustomCommandLines commandLines; @@ -165,7 +168,8 @@ void cmVTKWrapJavaCommand::FinalPass() { commandLineP.push_back(hints); } - commandLineP.push_back((m_WrapClasses[classNum].GetPropertyAsBool("ABSTRACT") ? "0" : "1")); + commandLineP.push_back( + (m_WrapClasses[classNum].GetPropertyAsBool("ABSTRACT") ? "0" : "1")); commandLineP.push_back(res2); cmCustomCommandLines commandLines2; |