mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 15:45:59 +01:00
core: add additional headers for Popup.cpp and InputMethodRelay.hpp (#4909)
This commit is contained in:
parent
555afea73c
commit
6e3a494d1d
2 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
#include "Popup.hpp"
|
#include "Popup.hpp"
|
||||||
|
#include "../Compositor.hpp"
|
||||||
|
|
||||||
CPopup::CPopup(CWindow* pOwner) : m_pWindowOwner(pOwner) {
|
CPopup::CPopup(CWindow* pOwner) : m_pWindowOwner(pOwner) {
|
||||||
initAllSignals();
|
initAllSignals();
|
||||||
|
@ -232,4 +233,4 @@ void CPopup::recheckChildrenRecursive() {
|
||||||
|
|
||||||
Vector2D CPopup::size() {
|
Vector2D CPopup::size() {
|
||||||
return m_vLastSize;
|
return m_vLastSize;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <list>
|
||||||
#include "../../defines.hpp"
|
#include "../../defines.hpp"
|
||||||
#include "../../helpers/WLClasses.hpp"
|
#include "../../helpers/WLClasses.hpp"
|
||||||
|
|
||||||
|
@ -50,4 +51,4 @@ class CInputMethodRelay {
|
||||||
friend class CHyprRenderer;
|
friend class CHyprRenderer;
|
||||||
friend class CInputManager;
|
friend class CInputManager;
|
||||||
friend class CTextInputV1ProtocolManager;
|
friend class CTextInputV1ProtocolManager;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue