gui/test: Put createAction() to anonymous namespace

This commit is contained in:
Povilas Kanapickas 2021-01-10 15:28:06 +02:00
parent 79d266d274
commit a004cd8eba
1 changed files with 32 additions and 29 deletions

View File

@ -96,8 +96,10 @@ struct TestHotKey
std::vector<TestAction> actions;
};
Action createAction(const TestAction& test_action)
{
namespace {
Action createAction(const TestAction& test_action)
{
Action action;
action.setType(test_action.type);
@ -128,7 +130,8 @@ Action createAction(const TestAction& test_action)
break;
}
return action;
}
}
} // namespace
void doHotkeyLoadSaveTest(const TestHotKey& test_hotkey, QSettings::Format format)
{