summaryrefslogtreecommitdiffstats
path: root/Source/cmMakeDepend.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-03-15 16:38:47 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-03-15 16:38:47 (GMT)
commitda279f0041586d10e0b6375b9f8d1c62c0d69608 (patch)
tree86bec4b214a331382d427ec37b74cd4f65195a13 /Source/cmMakeDepend.cxx
parent886e9bedc7e2f77f0035f21bd2b2b27c82696fa0 (diff)
downloadCMake-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.cxx8
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;
}