Skip to content
Snippets Groups Projects
Commit dce90f44 authored by Patrick José Pereira's avatar Patrick José Pereira
Browse files

Joystick: Change from foreach to c++11 for

parent a4d7af96
Branches
No related tags found
No related merge requests found
......@@ -153,7 +153,7 @@ QVariantList JoystickManager::joysticks(void)
{
QVariantList list;
foreach (const QString &name, _name2JoystickMap.keys()) {
for (const QString &name: _name2JoystickMap.keys()) {
list += QVariant::fromValue(_name2JoystickMap[name]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment