qt: Use GUIUtil::HtmlEscape to escape HTML

This is why we created this function. Avoids some #ifdef.
This commit is contained in:
Wladimir J. van der Laan 2013-08-30 14:32:00 +02:00
parent 5da998e887
commit 9d2fee17e0
1 changed files with 2 additions and 10 deletions

View File

@ -98,20 +98,12 @@ void SendCoinsDialog::on_sendButton_clicked()
if (rcp.authenticatedMerchant.isEmpty()) if (rcp.authenticatedMerchant.isEmpty())
{ {
QString address = rcp.address; QString address = rcp.address;
#if QT_VERSION < 0x050000 QString to = GUIUtil::HtmlEscape(rcp.label);
QString to = Qt::escape(rcp.label);
#else
QString to = rcp.label.toHtmlEscaped();
#endif
formatted.append(tr("<b>%1</b> to %2 (%3)").arg(amount, to, address)); formatted.append(tr("<b>%1</b> to %2 (%3)").arg(amount, to, address));
} }
else else
{ {
#if QT_VERSION < 0x050000 QString merchant = GUIUtil::HtmlEscape(rcp.authenticatedMerchant);
QString merchant = Qt::escape(rcp.authenticatedMerchant);
#else
QString merchant = rcp.authenticatedMerchant.toHtmlEscaped();
#endif
formatted.append(tr("<b>%1</b> to %2").arg(amount, merchant)); formatted.append(tr("<b>%1</b> to %2").arg(amount, merchant));
} }
} }