diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-10-05 18:34:05 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-10-05 18:34:05 (GMT) |
commit | 43ea2c0064d906c131d415bd8facc13ec95ca281 (patch) | |
tree | a42b9c954dbf35f25bce1455750367787f06df4e /Swift | |
parent | bfeca3cc938e325bf2cc2d9105c719feb1fe28ee (diff) | |
download | swift-43ea2c0064d906c131d415bd8facc13ec95ca281.zip swift-43ea2c0064d906c131d415bd8facc13ec95ca281.tar.bz2 |
Linkify updated messages as well as the originals.
Resolves: #584
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 a71cd43..ef31727 100644 --- a/Swift/QtUI/QtChatWindow.cpp +++ b/Swift/QtUI/QtChatWindow.cpp @@ -389,7 +389,7 @@ void QtChatWindow::moveEvent(QMoveEvent*) { } void QtChatWindow::replaceLastMessage(const String& message) { - messageLog_->replaceLastMessage(P2QSTRING(message)); + messageLog_->replaceLastMessage(P2QSTRING(Linkify::linkify(message))); } } |