mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Rename constructor parameters to avoid shadowing members
This commit is contained in:
@ -13,8 +13,8 @@ namespace ControllerEmu
|
||||
class Slider : public ControlGroup
|
||||
{
|
||||
public:
|
||||
Slider(const std::string& name, const std::string& ui_name);
|
||||
explicit Slider(const std::string& name);
|
||||
Slider(const std::string& name_, const std::string& ui_name_);
|
||||
explicit Slider(const std::string& name_);
|
||||
|
||||
void GetState(ControlState* slider);
|
||||
};
|
||||
|
Reference in New Issue
Block a user