actions: change naming convention to camelCase

This commit is contained in:
Andrzej Rybczak
2012-10-06 18:02:31 +02:00
parent ca24c5be5b
commit 6709219aac
10 changed files with 361 additions and 355 deletions

View File

@@ -98,7 +98,7 @@ Action *parseActionLine(const std::string &line, F error)
size_t i = 0;
for (; i < line.size() && !isspace(line[i]); ++i) { }
if (i == line.size()) // only action name
result = Action::Get(line);
result = Action::get(line);
else // there is something else
{
std::string action_name = line.substr(0, i);
@@ -141,7 +141,7 @@ Action *parseActionLine(const std::string &line, F error)
{
// require that given action is runnable
std::string arg = getEnclosedString(line, '"', '"', 0);
Action *action = Action::Get(arg);
Action *action = Action::get(arg);
if (action)
result = new RequireRunnable(action);
else