mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-11-30 04:16:40 -05: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
|
|
@ -67,9 +67,9 @@ PeerItem::PeerItem(FeedHolder *parent, uint32_t feedId, const RsPeerId &peerId,
|
|||
updateItem();
|
||||
}
|
||||
|
||||
QString PeerItem::uniqueIdentifier() const
|
||||
std::string PeerItem::uniqueIdentifier() const
|
||||
{
|
||||
return "PeerItem " + QString::fromStdString(mPeerId.toStdString()) + " " + QString::number(mType) ;
|
||||
return "PeerItem " + mPeerId.toStdString() + " " + QString::number(mType).toStdString() ;
|
||||
}
|
||||
|
||||
void PeerItem::updateItemStatic()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue