summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-04-23 14:05:29 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-04-23 14:07:15 (GMT)
commitaed9957d22a4fa2e64df08a0e5ddfdbf309f130a (patch)
treeee1bfdbffcdbd11ec23d3a5ed25eabd53e11c0c5 /Swift/QtUI/ChatSnippet.h
parent18f4f0ba13bbfe901dae44e95d869ba0425e93c7 (diff)
downloadswift-contrib-aed9957d22a4fa2e64df08a0e5ddfdbf309f130a.zip
swift-contrib-aed9957d22a4fa2e64df08a0e5ddfdbf309f130a.tar.bz2
Stop over-enlarging nested span elements in chat windows.
Resolves: #891
Diffstat (limited to 'Swift/QtUI/ChatSnippet.h')
-rw-r--r--Swift/QtUI/ChatSnippet.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/QtUI/ChatSnippet.h b/Swift/QtUI/ChatSnippet.h
index 523a96c..f79f487 100644
--- a/Swift/QtUI/ChatSnippet.h
+++ b/Swift/QtUI/ChatSnippet.h
@@ -35,18 +35,19 @@ namespace Swift {
result.replace("%shortTime%", "%&#37;shortTime&#37;");
result.replace("%userIconPath%", "&#37;userIconPath&#37;");
result.replace(" ", "&nbsp;&nbsp;");
return result;
}
static QString timeToEscapedString(const QDateTime& time);
protected:
+ QString wrapResizable(const QString& text);
void setContinuationFallbackSnippet(boost::shared_ptr<ChatSnippet> continuationFallback) {
continuationFallback_ = continuationFallback;
}
private:
bool appendToPrevious_;
boost::shared_ptr<ChatSnippet> continuationFallback_;
};
}