mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-29 00:27:27 -04:00
retroshare-gui fix windows compilation error due to time_t usage
This commit is contained in:
parent
72d8364370
commit
6db23267c3
5 changed files with 11 additions and 9 deletions
|
@ -574,7 +574,7 @@ void ChatLobbyDialog::updateParticipantsList()
|
|||
delete ui.participantsList->takeTopLevelItem(index);
|
||||
}
|
||||
|
||||
for (std::map<RsGxsId,time_t>::const_iterator it2(linfo.gxs_ids.begin()); it2 != linfo.gxs_ids.end(); ++it2)
|
||||
for (auto it2(linfo.gxs_ids.begin()); it2 != linfo.gxs_ids.end(); ++it2)
|
||||
{
|
||||
QString participant = QString::fromUtf8( (it2->first).toStdString().c_str() );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue