fix shadow warnings gcc produces

This commit is contained in:
Andrzej Rybczak
2012-09-13 22:12:16 +02:00
parent 58a26b1e18
commit 7c3f93e211
3 changed files with 7 additions and 7 deletions

View File

@@ -156,10 +156,10 @@ std::string Help::DisplayKeys(const ActionType at)
return result;
}
void Help::Section(const char *type, const char *title)
void Help::Section(const char *type, const char *title_)
{
*w << L"\n " << NC::fmtBold << ToWString(type) << L" - ";
*w << ToWString(title) << NC::fmtBoldEnd << L"\n\n";
*w << ToWString(title_) << NC::fmtBoldEnd << L"\n\n";
}
void Help::KeyDesc(const ActionType at, const char *desc)