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

@ -17,8 +17,8 @@ class CShortcutClient {
bool good();
private:
SP<CHyprlandGlobalShortcutsManagerV1> resource;
std::vector<SP<SShortcut>> shortcuts;
SP<CHyprlandGlobalShortcutsManagerV1> m_resource;
std::vector<SP<SShortcut>> m_shortcuts;
friend class CGlobalShortcutsProtocol;
};
@ -35,7 +35,7 @@ class CGlobalShortcutsProtocol : IWaylandProtocol {
std::vector<SShortcut> getAllShortcuts();
private:
std::vector<SP<CShortcutClient>> m_vClients;
std::vector<SP<CShortcutClient>> m_clients;
};
namespace PROTO {