From e7c96af8abfb13ae8aa71c6c7438319867969879 Mon Sep 17 00:00:00 2001 From: defnax Date: Mon, 18 May 2015 16:57:56 +0000 Subject: [PATCH] changed notify text for incoming video call on Chat Window. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8272 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- plugins/VOIP/gui/VOIPChatWidgetHolder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/VOIP/gui/VOIPChatWidgetHolder.cpp b/plugins/VOIP/gui/VOIPChatWidgetHolder.cpp index 22a26c189..d81edc2f3 100644 --- a/plugins/VOIP/gui/VOIPChatWidgetHolder.cpp +++ b/plugins/VOIP/gui/VOIPChatWidgetHolder.cpp @@ -281,8 +281,8 @@ void VOIPChatWidgetHolder::addVideoData(const QString name, QByteArray* array) button_map::iterator it = buttonMapTakeVideo.find(buttonName); if (it == buttonMapTakeVideo.end()){ mChatWidget->addChatMsg(true, tr("VoIP Status"), QDateTime::currentDateTime(), QDateTime::currentDateTime() - , tr("Video call from: %1").arg(buttonName), ChatWidget::MSGTYPE_SYSTEM); - RSButtonOnText *button = mChatWidget->getNewButtonOnTextBrowser(tr("Take Video Call")); + , tr("%1 inviting you to start a video conversation. do you want Accept or Decline the invitation?").arg(buttonName), ChatWidget::MSGTYPE_SYSTEM); + RSButtonOnText *button = mChatWidget->getNewButtonOnTextBrowser(tr("Accept Video Call")); button->setToolTip(tr("Activate camera")); button->setStyleSheet(QString("background-color: green;") .append("border-style: outset;")