gui/test: Put createAction() to anonymous namespace
This commit is contained in:
parent
79d266d274
commit
a004cd8eba
|
@ -96,6 +96,8 @@ struct TestHotKey
|
||||||
std::vector<TestAction> actions;
|
std::vector<TestAction> actions;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
Action createAction(const TestAction& test_action)
|
Action createAction(const TestAction& test_action)
|
||||||
{
|
{
|
||||||
Action action;
|
Action action;
|
||||||
|
@ -129,6 +131,7 @@ Action createAction(const TestAction& test_action)
|
||||||
}
|
}
|
||||||
return action;
|
return action;
|
||||||
}
|
}
|
||||||
|
} // namespace
|
||||||
|
|
||||||
void doHotkeyLoadSaveTest(const TestHotKey& test_hotkey, QSettings::Format format)
|
void doHotkeyLoadSaveTest(const TestHotKey& test_hotkey, QSettings::Format format)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue