summaryrefslogtreecommitdiff
path: root/src/party.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/party.h')
-rw-r--r--src/party.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/party.h b/src/party.h
index ac421fd9..d96500ca 100644
--- a/src/party.h
+++ b/src/party.h
@@ -53,7 +53,7 @@ protected:
int mId;
Party *mParty;
- bool mLeader;
+ bool mLeader = false;
};
class Party : public AvatarListModel
@@ -166,11 +166,10 @@ private:
~Party() override;
- using MemberList = std::vector<PartyMember *>;
- MemberList mMembers;
+ std::vector<PartyMember *> mMembers;
std::string mName;
short mId;
- bool mCanInviteUsers;
+ bool mCanInviteUsers = false;
};
#endif // PARTY_H