1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

LibGUI: Reduce menu-related header dependencies

This commit is contained in:
Andreas Kling 2020-02-15 01:56:30 +01:00
parent 9e83bbe1cd
commit b011ea9962
16 changed files with 32 additions and 10 deletions

View file

@ -30,12 +30,12 @@
#include <AK/NonnullOwnPtrVector.h>
#include <AK/NonnullRefPtr.h>
#include <LibCore/Object.h>
#include <LibGUI/MenuItem.h>
#include <LibGfx/Forward.h>
namespace GUI {
class Action;
class MenuItem;
class Menu final : public Core::Object {
C_OBJECT(Menu)