STYLE: functions use upper case for the first letter

Alex
This commit is contained in:
Alexander Neundorf 2007-05-09 09:35:59 -04:00
parent d00f753104
commit e701ef77d8
2 changed files with 6 additions and 6 deletions

View File

@ -410,7 +410,7 @@ void cmTarget::SetMakefile(cmMakefile* mf)
void void
cmTarget::checkForTargetsAsCommand(const std::vector<cmCustomCommand>& commands) cmTarget::CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands)
{ {
for ( std::vector<cmCustomCommand>::const_iterator cli = commands.begin(); for ( std::vector<cmCustomCommand>::const_iterator cli = commands.begin();
cli != commands.end(); cli != commands.end();
@ -529,10 +529,10 @@ void cmTarget::TraceVSDependencies(std::string projFile,
} }
} }
} }
checkForTargetsAsCommand(this->GetPreBuildCommands()); CheckForTargetsAsCommand(this->GetPreBuildCommands());
checkForTargetsAsCommand(this->GetPreLinkCommands()); CheckForTargetsAsCommand(this->GetPreLinkCommands());
checkForTargetsAsCommand(this->GetPostBuildCommands()); CheckForTargetsAsCommand(this->GetPostBuildCommands());
while (!srcFilesToProcess.empty()) while (!srcFilesToProcess.empty())
{ {

View File

@ -295,7 +295,7 @@ private:
* Checks the prebuild, prelink and postbuild custom commands for known * Checks the prebuild, prelink and postbuild custom commands for known
* targets and adds them to the dependencies. * targets and adds them to the dependencies.
*/ */
void checkForTargetsAsCommand(const std::vector<cmCustomCommand>& commands); void CheckForTargetsAsCommand(const std::vector<cmCustomCommand>& commands);
/** /**