summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-10 12:41:47 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-06-10 12:41:47 (GMT)
commit708828dc3761cc009f5ea479e6012ca1193e7e60 (patch)
treef813ac450a1d47b8b824ee35e35fa0937c6774bc /Source/cmGlobalXCodeGenerator.cxx
parent8b88391daa911db4829e45217e4d73c5d7df44c0 (diff)
downloadCMake-708828dc3761cc009f5ea479e6012ca1193e7e60.zip
CMake-708828dc3761cc009f5ea479e6012ca1193e7e60.tar.gz
CMake-708828dc3761cc009f5ea479e6012ca1193e7e60.tar.bz2
ENH: removed old convert calls
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 6a1f941..259d8a3 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -1634,7 +1634,8 @@ std::string cmGlobalXCodeGenerator::ConvertToRelativeForMake(const char* p)
}
else
{
- std::string ret = this->ConvertToRelativePath(m_CurrentOutputDirectoryComponents, p);
+ std::string ret =
+ this->ConvertToRelativePath(m_CurrentOutputDirectoryComponents, p);
return cmSystemTools::ConvertToOutputPath(ret.c_str());
}
}
@@ -1648,7 +1649,8 @@ std::string cmGlobalXCodeGenerator::ConvertToRelativeForXCode(const char* p)
}
else
{
- std::string ret = this->ConvertToRelativePath(m_ProjectOutputDirectoryComponents, p);
+ std::string ret =
+ this->ConvertToRelativePath(m_ProjectOutputDirectoryComponents, p);
return cmSystemTools::ConvertToOutputPath(ret.c_str());
}
}