diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-05-09 13:35:59 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-05-09 13:35:59 (GMT) |
commit | e701ef77d8487c3cf348f24f86fdfd97661681ab (patch) | |
tree | e62a9a89c184a4c80dc926c38a958b7fc3193538 /Source/cmTarget.cxx | |
parent | d00f7531042167d3e17951521470259e5f2ce3a7 (diff) | |
download | CMake-e701ef77d8487c3cf348f24f86fdfd97661681ab.zip CMake-e701ef77d8487c3cf348f24f86fdfd97661681ab.tar.gz CMake-e701ef77d8487c3cf348f24f86fdfd97661681ab.tar.bz2 |
STYLE: functions use upper case for the first letter
Alex
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 9f99266..677d96f 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -410,7 +410,7 @@ void cmTarget::SetMakefile(cmMakefile* mf) void -cmTarget::checkForTargetsAsCommand(const std::vector<cmCustomCommand>& commands) +cmTarget::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands) { for ( std::vector<cmCustomCommand>::const_iterator cli = commands.begin(); cli != commands.end(); @@ -529,10 +529,10 @@ void cmTarget::TraceVSDependencies(std::string projFile, } } } - - checkForTargetsAsCommand(this->GetPreBuildCommands()); - checkForTargetsAsCommand(this->GetPreLinkCommands()); - checkForTargetsAsCommand(this->GetPostBuildCommands()); + + CheckForTargetsAsCommand(this->GetPreBuildCommands()); + CheckForTargetsAsCommand(this->GetPreLinkCommands()); + CheckForTargetsAsCommand(this->GetPostBuildCommands()); while (!srcFilesToProcess.empty()) { |