LibGUI: Remove Action::try_create_checkable()

This commit is contained in:
Tim Ledbetter 2023-09-18 06:01:09 +01:00 committed by Andreas Kling
commit 9b30dea889
Notes: sideshowbarker 2024-07-16 23:03:06 +09:00
2 changed files with 0 additions and 7 deletions

View file

@ -77,8 +77,6 @@ public:
static NonnullRefPtr<Action> create_checkable(DeprecatedString text, Shortcut const& shortcut, Function<void(Action&)> callback, Core::EventReceiver* parent = nullptr);
static NonnullRefPtr<Action> create_checkable(DeprecatedString text, Shortcut const& shortcut, RefPtr<Gfx::Bitmap const> icon, Function<void(Action&)> callback, Core::EventReceiver* parent = nullptr);
static ErrorOr<NonnullRefPtr<Action>> try_create_checkable(DeprecatedString text, Shortcut const& shortcut, Function<void(Action&)> callback, Core::EventReceiver* parent = nullptr);
static RefPtr<Action> find_action_for_shortcut(Core::EventReceiver& object, Shortcut const& shortcut);
virtual ~Action() override;