From 444c40e5e3dc4058a6a762ba5e73ada6d6469055 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Mon, 30 Dec 2024 19:43:17 +0100 Subject: [PATCH] core: fix build with hw-s 0.4.4 fixes #102 --- src/hyprpicker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hyprpicker.cpp b/src/hyprpicker.cpp index 2e8dbbf..ed07b99 100644 --- a/src/hyprpicker.cpp +++ b/src/hyprpicker.cpp @@ -573,7 +573,7 @@ void CHyprpicker::initKeyboard() { } void CHyprpicker::initMouse() { - m_pPointer->setEnter([this](CCWlPointer* r, uint32_t serial, wl_resource* surface, wl_fixed_t surface_x, wl_fixed_t surface_y) { + m_pPointer->setEnter([this](CCWlPointer* r, uint32_t serial, wl_proxy* surface, wl_fixed_t surface_x, wl_fixed_t surface_y) { auto x = wl_fixed_to_double(surface_x); auto y = wl_fixed_to_double(surface_y); @@ -590,7 +590,7 @@ void CHyprpicker::initMouse() { m_pCursorShapeDevice->sendSetShape(serial, WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_CROSSHAIR); }); - m_pPointer->setLeave([this](CCWlPointer* r, uint32_t timeMs, wl_resource* surf) { + m_pPointer->setLeave([this](CCWlPointer* r, uint32_t timeMs, wl_proxy* surf) { for (auto& ls : m_vLayerSurfaces) { if (ls->pSurface->resource() == surf) { renderSurface(ls.get(), true);