diff options
author | Remko Tronçon <git@el-tramo.be> | 2012-09-08 16:25:19 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2012-09-08 16:25:19 (GMT) |
commit | 96371e8d5123d66624b25bddedddf0c83a0aa222 (patch) | |
tree | f69322f0d7390d0fcef60ff856001b3dadb7060d /Swift | |
parent | fe8a8aa031da734f3112184420b372021d9e10c7 (diff) | |
download | swift-contrib-96371e8d5123d66624b25bddedddf0c83a0aa222.zip swift-contrib-96371e8d5123d66624b25bddedddf0c83a0aa222.tar.bz2 |
Make previous patch compile after changes to QtChatView.
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/QtChatWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtChatWindow.cpp b/Swift/QtUI/QtChatWindow.cpp index 6c96b34..314e36c 100644 --- a/Swift/QtUI/QtChatWindow.cpp +++ b/Swift/QtUI/QtChatWindow.cpp @@ -674,7 +674,7 @@ std::string QtChatWindow::addWhiteboardRequest(bool senderIsSelf) { } QString qAvatarPath = "qrc:/icons/avatar.png"; std::string id = "wbmessage" + boost::lexical_cast<std::string>(idCounter_++); - messageLog_->addMessage(boost::shared_ptr<ChatSnippet>(new MessageSnippet(htmlString, Qt::escape(contact_), B2QDATE(boost::posix_time::second_clock::local_time()), qAvatarPath, false, false, theme_, P2QSTRING(id)))); + messageLog_->addMessageBottom(boost::shared_ptr<ChatSnippet>(new MessageSnippet(htmlString, Qt::escape(contact_), B2QDATE(boost::posix_time::second_clock::local_time()), qAvatarPath, false, false, theme_, P2QSTRING(id)))); previousMessageWasSelf_ = false; previousSenderName_ = contact_; |