diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 17:44:15 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 17:44:15 (GMT) |
commit | 2bb24565e5fb9ba99aa3164332a81504a7eb51b0 (patch) | |
tree | 41bdef6a46b275c37f4d958959210c9c08baf7d3 /Source/cmQTWrapUICommand.cxx | |
parent | 3c4bfa10037d91f89fc25c51da5239136148bfa6 (diff) | |
download | CMake-2bb24565e5fb9ba99aa3164332a81504a7eb51b0.zip CMake-2bb24565e5fb9ba99aa3164332a81504a7eb51b0.tar.gz CMake-2bb24565e5fb9ba99aa3164332a81504a7eb51b0.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmQTWrapUICommand.cxx')
-rw-r--r-- | Source/cmQTWrapUICommand.cxx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Source/cmQTWrapUICommand.cxx b/Source/cmQTWrapUICommand.cxx index 717459c..9bec97f 100644 --- a/Source/cmQTWrapUICommand.cxx +++ b/Source/cmQTWrapUICommand.cxx @@ -75,7 +75,8 @@ bool cmQTWrapUICommand::InitialPass(std::vector<std::string> const& argsIn) { if ( curr && curr->GetPropertyAsBool("GENERATED") ) { - origname = std::string( this->Makefile->GetCurrentOutputDirectory() ) + "/" + *j; + origname = std::string(this->Makefile->GetCurrentOutputDirectory()) + + "/" + *j; } else { @@ -114,8 +115,10 @@ bool cmQTWrapUICommand::InitialPass(std::vector<std::string> const& argsIn) } } - this->Makefile->AddDefinition(this->SourceList.c_str(), sourceListValue.c_str()); - this->Makefile->AddDefinition(this->HeaderList.c_str(), headerListValue.c_str()); + this->Makefile->AddDefinition(this->SourceList.c_str(), + sourceListValue.c_str()); + this->Makefile->AddDefinition(this->HeaderList.c_str(), + headerListValue.c_str()); return true; } @@ -125,8 +128,10 @@ void cmQTWrapUICommand::FinalPass() // first we add the rules for all the .ui to .h and .cxx files size_t lastHeadersClass = this->WrapHeadersClasses.size(); std::vector<std::string> depends; - const char* uic_exe = this->Makefile->GetRequiredDefinition("QT_UIC_EXECUTABLE"); - const char* moc_exe = this->Makefile->GetRequiredDefinition("QT_MOC_EXECUTABLE"); + const char* uic_exe = + this->Makefile->GetRequiredDefinition("QT_UIC_EXECUTABLE"); + const char* moc_exe = + this->Makefile->GetRequiredDefinition("QT_MOC_EXECUTABLE"); // wrap all the .h files depends.push_back(uic_exe); |