From 47d11fc5c8b1b74dc0af115879466161e0aaca17 Mon Sep 17 00:00:00 2001 From: Strider <127.0.0.1@404.notfound> Date: Thu, 28 May 2020 19:57:22 +0200 Subject: [PATCH] update// added backwarts compat on addresses --- src/Model/ContactItem.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Model/ContactItem.h b/src/Model/ContactItem.h index 7eda17d..861ad26 100644 --- a/src/Model/ContactItem.h +++ b/src/Model/ContactItem.h @@ -11,11 +11,11 @@ using json = nlohmann::json; class ContactItem { private: - QString _myAddress; - QString _partnerAddress; - QString _name; - QString _cid; - QString _avatar; + QString _myAddress = ""; + QString _partnerAddress = ""; + QString _name = ""; + QString _cid = ""; + QString _avatar = ":/icons/res/sdlogo.png"; public: ContactItem();