From 6e3a494d1ddbdcffaee39d78e7d66d00a4cd350d Mon Sep 17 00:00:00 2001 From: Brett Alcox Date: Fri, 1 Mar 2024 14:07:36 -0600 Subject: [PATCH] core: add additional headers for Popup.cpp and InputMethodRelay.hpp (#4909) --- src/desktop/Popup.cpp | 3 ++- src/managers/input/InputMethodRelay.hpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/desktop/Popup.cpp b/src/desktop/Popup.cpp index 7c6eb1c9..0ba7f210 100644 --- a/src/desktop/Popup.cpp +++ b/src/desktop/Popup.cpp @@ -1,4 +1,5 @@ #include "Popup.hpp" +#include "../Compositor.hpp" CPopup::CPopup(CWindow* pOwner) : m_pWindowOwner(pOwner) { initAllSignals(); @@ -232,4 +233,4 @@ void CPopup::recheckChildrenRecursive() { Vector2D CPopup::size() { return m_vLastSize; -} \ No newline at end of file +} diff --git a/src/managers/input/InputMethodRelay.hpp b/src/managers/input/InputMethodRelay.hpp index 83332285..9f9e95f6 100644 --- a/src/managers/input/InputMethodRelay.hpp +++ b/src/managers/input/InputMethodRelay.hpp @@ -1,5 +1,6 @@ #pragma once +#include #include "../../defines.hpp" #include "../../helpers/WLClasses.hpp" @@ -50,4 +51,4 @@ class CInputMethodRelay { friend class CHyprRenderer; friend class CInputManager; friend class CTextInputV1ProtocolManager; -}; \ No newline at end of file +};