diff options
author | Kevin Smith <git@kismith.co.uk> | 2011-12-21 15:34:51 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2011-12-21 15:34:51 (GMT) |
commit | 6c1e7d8a8339a849896566464bd9f1db33e3b3da (patch) | |
tree | 4bd2b971785f54bc4c209f82136d9c6cfe5c45d1 /Swift/QtUI | |
parent | 9f4614d89fa3d69902b6f69d1cb775fc1c620431 (diff) | |
download | swift-contrib-6c1e7d8a8339a849896566464bd9f1db33e3b3da.zip swift-contrib-6c1e7d8a8339a849896566464bd9f1db33e3b3da.tar.bz2 |
Don't escape < for status widget
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/QtStatusWidget.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Swift/QtUI/QtStatusWidget.cpp b/Swift/QtUI/QtStatusWidget.cpp index 47f0afe..0e2731a 100644 --- a/Swift/QtUI/QtStatusWidget.cpp +++ b/Swift/QtUI/QtStatusWidget.cpp @@ -239,8 +239,6 @@ void QtStatusWidget::setStatusText(const QString& text) { statusText_ = text; statusEdit_->setText(text); QString escapedText(text.isEmpty() ? getNoMessage() : text); - escapedText.replace("<","<"); -// statusTextLabel_->setText("<i>" + escapedText + "</i>"); statusTextLabel_->setText(escapedText); setNewToolTip(); } |