protocols: refactor class member vars (a-m) (#10265)
This commit is contained in:
parent
46ac115bd1
commit
adbae0f74d
58 changed files with 1566 additions and 1561 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue