diff options
author | Brett Alcox <[email protected]> | 2023-11-05 11:32:27 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-05 17:32:27 +0000 |
commit | a122271f096076ab34750dbbf6914422e7481410 (patch) | |
tree | b51ed9a2694295067b029fccab6b46ef689fa2e0 /src/helpers | |
parent | 600a128f83c9f6d6cf37d4e9de6bf9001d321bd0 (diff) | |
download | Hyprland-a122271f096076ab34750dbbf6914422e7481410.tar.gz Hyprland-a122271f096076ab34750dbbf6914422e7481410.zip |
includes: fix box headers (#3771)
Diffstat (limited to 'src/helpers')
-rw-r--r-- | src/helpers/Box.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helpers/Box.hpp b/src/helpers/Box.hpp index a5f24d7b..592bb417 100644 --- a/src/helpers/Box.hpp +++ b/src/helpers/Box.hpp @@ -1,8 +1,8 @@ #pragma once -#include <wlr/util/box.h> #include "Vector2D.hpp" #include "../SharedDefs.hpp" +#include "../includes.hpp" class CBox { public: @@ -77,4 +77,4 @@ class CBox { CBox roundInternal(); wlr_box m_bWlrBox; -};
\ No newline at end of file +}; |