diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:38:47 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:38:47 (GMT) |
commit | da279f0041586d10e0b6375b9f8d1c62c0d69608 (patch) | |
tree | 86bec4b214a331382d427ec37b74cd4f65195a13 /Source/cmMakeDepend.cxx | |
parent | 886e9bedc7e2f77f0035f21bd2b2b27c82696fa0 (diff) | |
download | CMake-da279f0041586d10e0b6375b9f8d1c62c0d69608.zip CMake-da279f0041586d10e0b6375b9f8d1c62c0d69608.tar.gz CMake-da279f0041586d10e0b6375b9f8d1c62c0d69608.tar.bz2 |
BUG: some UNIX fixes for my m_ commit
Diffstat (limited to 'Source/cmMakeDepend.cxx')
-rw-r--r-- | Source/cmMakeDepend.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmMakeDepend.cxx b/Source/cmMakeDepend.cxx index 31b4d9c..d0e0827 100644 --- a/Source/cmMakeDepend.cxx +++ b/Source/cmMakeDepend.cxx @@ -113,11 +113,11 @@ void cmMakeDepend::GenerateDependInformation(cmDependInformation* info) // See if the cmSourceFile for it has any files specified as // dependency hints. - if(info->cmSourceFile != 0) + if(info->SourceFile != 0) { // Get the cmSourceFile corresponding to this. - const cmSourceFile& cFile = *(info->cmSourceFile); + const cmSourceFile& cFile = *(info->SourceFile); // See if there are any hints for finding dependencies for the missing // file. if(!cFile.GetDepends().empty()) @@ -280,7 +280,7 @@ void cmMakeDepend::GenerateMakefileDependencies() cmDependInformation* info = this->GetDependInformation((*i)->GetFullPath().c_str(),0); this->AddFileToSearchPath(info->FullPath.c_str()); - info->cmSourceFile = *i; + info->SourceFile = *i; this->GenerateDependInformation(info); } } @@ -389,7 +389,7 @@ cmMakeDepend::GetDependInformationForSourceFile(const cmSourceFile &sf) const i != this->DependInformationMap.end(); ++i) { const cmDependInformation* info = i->second; - if(info->cmSourceFile == &sf) + if(info->SourceFile == &sf) { return info; } |