summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateusz Piekos <mateuszpiekos@gmail.com>2012-08-07 06:32:43 (GMT)
committerMateusz Piekos <mateuszpiekos@gmail.com>2012-08-07 06:32:43 (GMT)
commit7ee66e0a35a49f71bc93f8dd6eed77efd8f4e1c1 (patch)
tree9cd76b61ec3709fc85356ff5428a6d56e704113c /Swift/QtUI/QtChatView.cpp
parent769a222499b6e98a8de5addc81854ff47181618b (diff)
downloadswift-contrib-7ee66e0a35a49f71bc93f8dd6eed77efd8f4e1c1.zip
swift-contrib-7ee66e0a35a49f71bc93f8dd6eed77efd8f4e1c1.tar.bz2
Added option to cancel outgoing whiteboard session request
Diffstat (limited to 'Swift/QtUI/QtChatView.cpp')
-rw-r--r--Swift/QtUI/QtChatView.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtChatView.cpp b/Swift/QtUI/QtChatView.cpp
index ef55dff..375a1ad 100644
--- a/Swift/QtUI/QtChatView.cpp
+++ b/Swift/QtUI/QtChatView.cpp
@@ -365,8 +365,8 @@ void QtChatView::setWhiteboardSessionStatus(QString id, const ChatWindow::Whiteb
QWebElement divElement = findDivElementWithID(document_, id);
QString newInnerHTML;
if (state == ChatWindow::WhiteboardAccepted) {
- newInnerHTML = tr("Started whiteboard session") + "<br/>" +
- QtChatWindow::buildChatWindowButton(tr("Show whitebaord"), QtChatWindow::ButtonWhiteboardShowWindow, id);
+ newInnerHTML = tr("Started whiteboard chat") + "<br/>" +
+ QtChatWindow::buildChatWindowButton(tr("Show whiteboard"), QtChatWindow::ButtonWhiteboardShowWindow, id);
} else if (state == ChatWindow::WhiteboardCanceled) {
newInnerHTML = tr("Whiteboard session has been canceled");
} else if (state == ChatWindow::WhiteboardRejected) {