mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-23 06:31:20 -04:00
replaced QString output of uniqueIdentifier() in feedItem classes by a std::string because QString caused random crashes
This commit is contained in:
parent
da6e7f9e9b
commit
11c520d280
21 changed files with 27 additions and 25 deletions
|
@ -42,7 +42,7 @@ public:
|
|||
|
||||
bool setGroup(const RsPostedGroup &group);
|
||||
|
||||
virtual QString uniqueIdentifier() const override { return "PostedGroupItem " + QString::fromStdString(mGroup.mMeta.mGroupId.toStdString()) ; }
|
||||
virtual std::string uniqueIdentifier() const override { return "PostedGroupItem " + mGroup.mMeta.mGroupId.toStdString() ; }
|
||||
|
||||
protected:
|
||||
/* FeedItem */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue