From 87653077f8b918b3b234d9c9092bc4c723e7bd4b Mon Sep 17 00:00:00 2001 From: Tom Englund Date: Thu, 10 Jul 2025 12:55:00 +0200 Subject: [PATCH] cursorshape: use unique ptrs less refcounting. --- src/protocols/CursorShape.cpp | 6 +++--- src/protocols/CursorShape.hpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/protocols/CursorShape.cpp b/src/protocols/CursorShape.cpp index 26f79a86..89ab7142 100644 --- a/src/protocols/CursorShape.cpp +++ b/src/protocols/CursorShape.cpp @@ -32,8 +32,8 @@ void CCursorShapeProtocol::onGetTabletToolV2(CWpCursorShapeManagerV1* pMgr, uint } void CCursorShapeProtocol::createCursorShapeDevice(CWpCursorShapeManagerV1* pMgr, uint32_t id, wl_resource* resource) { - const auto CLIENT = pMgr->client(); - const auto RESOURCE = m_devices.emplace_back(makeShared(CLIENT, pMgr->version(), id)); + const auto CLIENT = pMgr->client(); + const auto& RESOURCE = m_devices.emplace_back(makeUnique(CLIENT, pMgr->version(), id)); RESOURCE->setOnDestroy([this](CWpCursorShapeDeviceV1* p) { this->onDeviceResourceDestroy(p->resource()); }); RESOURCE->setDestroy([this](CWpCursorShapeDeviceV1* p) { this->onDeviceResourceDestroy(p->resource()); }); @@ -52,4 +52,4 @@ void CCursorShapeProtocol::onSetShape(CWpCursorShapeDeviceV1* pMgr, uint32_t ser event.shapeName = CURSOR_SHAPE_NAMES.at(shape); m_events.setShape.emit(event); -} \ No newline at end of file +} diff --git a/src/protocols/CursorShape.hpp b/src/protocols/CursorShape.hpp index 918032ab..d4a130e9 100644 --- a/src/protocols/CursorShape.hpp +++ b/src/protocols/CursorShape.hpp @@ -32,7 +32,7 @@ class CCursorShapeProtocol : public IWaylandProtocol { void createCursorShapeDevice(CWpCursorShapeManagerV1* pMgr, uint32_t id, wl_resource* resource); // - std::vector> m_devices; + std::vector> m_devices; std::vector> m_managers; };