diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-06-15 15:51:51 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-06-15 15:51:51 (GMT) |
commit | 6071052835552a7dbdf7bd4f38263c6f206b26dd (patch) | |
tree | a8449abd8ac5803f2092cef86cbeb019cb0502f6 /Source/cmGlobalKdevelopGenerator.cxx | |
parent | 4c2c2cfd680afb1e34705e07c15e9a1bbe164cf9 (diff) | |
download | CMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.zip CMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.tar.gz CMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.tar.bz2 |
ENH: fix linelength
Diffstat (limited to 'Source/cmGlobalKdevelopGenerator.cxx')
-rw-r--r-- | Source/cmGlobalKdevelopGenerator.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmGlobalKdevelopGenerator.cxx b/Source/cmGlobalKdevelopGenerator.cxx index fa58fb6..3c3977b 100644 --- a/Source/cmGlobalKdevelopGenerator.cxx +++ b/Source/cmGlobalKdevelopGenerator.cxx @@ -162,7 +162,8 @@ bool cmGlobalKdevelopGenerator tmp=(*si)->GetFullPath(); cmSystemTools::ReplaceString(tmp, projectDir.c_str(), ""); if ((tmp[0]!='/') && - (strstr(tmp.c_str(), cmake::GetCMakeFilesDirectoryPostSlash())==0)) + (strstr(tmp.c_str(), + cmake::GetCMakeFilesDirectoryPostSlash())==0)) { files.insert(tmp); } @@ -173,7 +174,8 @@ bool cmGlobalKdevelopGenerator tmp=*lt; cmSystemTools::ReplaceString(tmp, projectDir.c_str(), ""); if ((tmp[0]!='/') && - (strstr(tmp.c_str(), cmake::GetCMakeFilesDirectoryPostSlash())==0)) + (strstr(tmp.c_str(), + cmake::GetCMakeFilesDirectoryPostSlash())==0)) { files.insert(tmp.c_str()); } |