Skip to content

Commit

Permalink
fix include statements
Browse files Browse the repository at this point in the history
hyprland headers live in $prefix/include/hyprland/src/... since v0.25
  • Loading branch information
horriblename committed May 11, 2023
1 parent 4cbcffb commit 221daff
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions src/GestureManager.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "GestureManager.hpp"
#include "src/Compositor.hpp"
#include "src/debug/Log.hpp"
#include "src/managers/KeybindManager.hpp"
#include "src/managers/input/InputManager.hpp"
#include <hyprland/src/Compositor.hpp>
#include <hyprland/src/debug/Log.hpp>
#include <hyprland/src/managers/KeybindManager.hpp>
#include <hyprland/src/managers/input/InputManager.hpp>
#include <algorithm>
#include <cstdint>
#include <memory>
Expand Down
8 changes: 4 additions & 4 deletions src/GestureManager.hpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#pragma once
#include "gestures/Gestures.hpp"
#include "./gestures/Gestures.hpp"
#include "globals.hpp"
#include "src/debug/Log.hpp"
#include "src/helpers/Monitor.hpp"
#include <src/includes.hpp>
#include <hyprland/src/debug/Log.hpp>
#include <hyprland/src/helpers/Monitor.hpp>
#include <hyprland/src/includes.hpp>
#include <vector>
#include <wayfire/touch/touch.hpp>

Expand Down
2 changes: 1 addition & 1 deletion src/globals.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once

#include <src/plugins/PluginAPI.hpp>
#include <hyprland/src/plugins/PluginAPI.hpp>

inline HANDLE PHANDLE = nullptr;
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

#include "globals.hpp"

#include <src/config/ConfigManager.hpp>
#include <src/managers/input/InputManager.hpp>
#include <hyprland/src/config/ConfigManager.hpp>
#include <hyprland/src/managers/input/InputManager.hpp>
// #include <wlr/types/wlr_touch.h>

const CColor s_pluginColor = {0x61 / 255.0f, 0xAF / 255.0f, 0xEF / 255.0f,
Expand Down

0 comments on commit 221daff

Please sign in to comment.