fix shadow warnings

This commit is contained in:
Andrzej Rybczak
2012-10-06 19:33:20 +02:00
parent 843c2b76e6
commit ab1476caa8
2 changed files with 11 additions and 11 deletions

View File

@@ -81,7 +81,7 @@ extern size_t FooterStartY;
struct BaseAction
{
BaseAction(Type type, const char *name) : m_type(type), m_name(name) { }
BaseAction(Type type_, const char *name_) : m_type(type_), m_name(name_) { }
const char *name() const { return m_name; }
Type type() const { return m_type; }