mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-17 13:47:53 +00:00
network, yuzu: Improve variable naming and style consistency
This commit is contained in:
parent
69e8e88fb7
commit
e937c85e5a
14 changed files with 53 additions and 47 deletions
|
@ -123,11 +123,11 @@ public:
|
|||
static const int HostVerifyUIDRole = Qt::UserRole + 4;
|
||||
|
||||
LobbyItemHost() = default;
|
||||
explicit LobbyItemHost(QString username, QString ip, u16 port, QString verify_UID) {
|
||||
explicit LobbyItemHost(QString username, QString ip, u16 port, QString verify_uid) {
|
||||
setData(username, HostUsernameRole);
|
||||
setData(ip, HostIPRole);
|
||||
setData(port, HostPortRole);
|
||||
setData(verify_UID, HostVerifyUIDRole);
|
||||
setData(verify_uid, HostVerifyUIDRole);
|
||||
}
|
||||
|
||||
QVariant data(int role) const override {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue