diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-01-22 13:45:13 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-22 14:16:40 (GMT) |
commit | 5cc9fb02349e4b7e63f3cb087dc37b3c9b096e1d (patch) | |
tree | e377945cb94e6c8b6a4a8cf1e7562828297b905b /Source/cmMakefile.cxx | |
parent | fe8b0330ebb4b3347e130e8a556ec2a4edfada93 (diff) | |
download | CMake-5cc9fb02349e4b7e63f3cb087dc37b3c9b096e1d.zip CMake-5cc9fb02349e4b7e63f3cb087dc37b3c9b096e1d.tar.gz CMake-5cc9fb02349e4b7e63f3cb087dc37b3c9b096e1d.tar.bz2 |
cmSourceGroup: Fix method name capitalization.
Adhere to the dominant style.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 5a3e721..6dc6a46 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2137,7 +2137,7 @@ cmMakefile::GetSourceGroup(const std::vector<std::string>&name) const // iterate through its children to find match source group for(unsigned int i=1; i<name.size(); ++i) { - sg = sg->lookupChild(name[i].c_str()); + sg = sg->LookupChild(name[i].c_str()); if(sg == 0) { break; @@ -2208,7 +2208,7 @@ void cmMakefile::AddSourceGroup(const std::vector<std::string>& name, for(++i; i<=lastElement; ++i) { sg->AddChild(cmSourceGroup(name[i].c_str(), 0, sg->GetFullName())); - sg = sg->lookupChild(name[i].c_str()); + sg = sg->LookupChild(name[i].c_str()); fullname = sg->GetFullName(); if(strlen(fullname)) { |