mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
15 lines
294 B
C++
15 lines
294 B
C++
|
#include <LibGUI/GAction.h>
|
||
|
#include <LibGUI/GActionGroup.h>
|
||
|
|
||
|
void GActionGroup::add_action(GAction& action)
|
||
|
{
|
||
|
action.set_group({}, this);
|
||
|
m_actions.set(&action);
|
||
|
}
|
||
|
|
||
|
void GActionGroup::remove_action(GAction& action)
|
||
|
{
|
||
|
action.set_group({}, nullptr);
|
||
|
m_actions.remove(&action);
|
||
|
}
|