protocols: refactor class member vars (a-m) (#10265)

This commit is contained in:
davc0n 2025-05-04 00:13:29 +02:00 committed by GitHub
parent 46ac115bd1
commit adbae0f74d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
58 changed files with 1566 additions and 1561 deletions

View file

@ -19,7 +19,7 @@ class CCursorShapeProtocol : public IWaylandProtocol {
struct {
CSignal setShape;
} events;
} m_events;
private:
void onManagerResourceDestroy(wl_resource* res);
@ -32,8 +32,8 @@ class CCursorShapeProtocol : public IWaylandProtocol {
void createCursorShapeDevice(CWpCursorShapeManagerV1* pMgr, uint32_t id, wl_resource* resource);
//
std::vector<SP<CWpCursorShapeDeviceV1>> m_vDevices;
std::vector<UP<CWpCursorShapeManagerV1>> m_vManagers;
std::vector<SP<CWpCursorShapeDeviceV1>> m_devices;
std::vector<UP<CWpCursorShapeManagerV1>> m_managers;
};
namespace PROTO {