From 274b46c1f70856dd0f57b92d369e7e7a484eac57 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Mon, 1 May 2023 02:57:48 +0100 Subject: [PATCH] hyprbars: fix include paths --- hyprbars/barDeco.cpp | 4 ++-- hyprbars/barDeco.hpp | 4 ++-- hyprbars/globals.hpp | 2 +- hyprbars/main.cpp | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/hyprbars/barDeco.cpp b/hyprbars/barDeco.cpp index fdba993..0838086 100644 --- a/hyprbars/barDeco.cpp +++ b/hyprbars/barDeco.cpp @@ -1,7 +1,7 @@ #include "barDeco.hpp" -#include -#include +#include +#include #include "globals.hpp" diff --git a/hyprbars/barDeco.hpp b/hyprbars/barDeco.hpp index ef59508..a52cf0f 100644 --- a/hyprbars/barDeco.hpp +++ b/hyprbars/barDeco.hpp @@ -2,8 +2,8 @@ #define WLR_USE_UNSTABLE -#include -#include +#include +#include #include "globals.hpp" class CHyprBar : public IHyprWindowDecoration { diff --git a/hyprbars/globals.hpp b/hyprbars/globals.hpp index 37e8363..2257475 100644 --- a/hyprbars/globals.hpp +++ b/hyprbars/globals.hpp @@ -1,5 +1,5 @@ #pragma once -#include +#include inline HANDLE PHANDLE = nullptr; \ No newline at end of file diff --git a/hyprbars/main.cpp b/hyprbars/main.cpp index 2250ef6..e9ec9b6 100644 --- a/hyprbars/main.cpp +++ b/hyprbars/main.cpp @@ -3,9 +3,9 @@ #include #include -#include -#include -#include +#include +#include +#include #include "barDeco.hpp" #include "globals.hpp"