mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Merge pull request #1275 from sehraf/pr_fix-IDdialog-chat-link
fix Qt 5.11 and id dialog chat link
This commit is contained in:
commit
65beb2cf2b
@ -1994,7 +1994,8 @@ QString IdDialog::createUsageString(const RsIdentityUsage& u) const
|
||||
}
|
||||
case RsIdentityUsage::CHAT_LOBBY_MSG_VALIDATION: // Chat lobby msgs are signed, so each time one comes, or a chat lobby event comes, a signature verificaiton happens.
|
||||
{
|
||||
RetroShareLink l = RetroShareLink::createChatRoom(ChatId(ChatLobbyId(u.mAdditionalId)),QString::number(u.mAdditionalId));
|
||||
ChatId id = ChatId(ChatLobbyId(u.mAdditionalId));
|
||||
RetroShareLink l = RetroShareLink::createChatRoom(id, QString::fromStdString(id.toStdString()));
|
||||
return tr("Message in chat room %1").arg(l.toHtml()) ;
|
||||
}
|
||||
case RsIdentityUsage::GLOBAL_ROUTER_SIGNATURE_CHECK: // Global router message validation
|
||||
|
@ -22,6 +22,7 @@
|
||||
*/
|
||||
|
||||
#include <QDateTime>
|
||||
#include <QStyle>
|
||||
|
||||
#include "rshare.h"
|
||||
#include "PostedItem.h"
|
||||
|
@ -20,6 +20,8 @@
|
||||
* Boston, MA 02110-1301, USA.
|
||||
****************************************************************/
|
||||
|
||||
#include <QTabBar>
|
||||
|
||||
#include "ChatTabWidget.h"
|
||||
#include "ui_ChatTabWidget.h"
|
||||
#include "ChatDialog.h"
|
||||
|
@ -23,6 +23,7 @@
|
||||
|
||||
#include <QTimer>
|
||||
#include <QFileInfo>
|
||||
#include <QStyle>
|
||||
|
||||
#include "rshare.h"
|
||||
#include "GxsChannelPostItem.h"
|
||||
|
@ -23,6 +23,7 @@
|
||||
|
||||
#include <QTimer>
|
||||
#include <QFileInfo>
|
||||
#include <QStyle>
|
||||
|
||||
#include "rshare.h"
|
||||
#include "GxsForumMsgItem.h"
|
||||
|
Loading…
Reference in New Issue
Block a user