Skip to content

Commit 8a93543

Browse files
committed
Replaces numbered place marker %2 with %1.
Replaces numbered place marker %2 with %1, because the QString::arg() member function is called once on the string used to create the QString object.
1 parent ddff344 commit 8a93543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/sendcoinsdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ void SendCoinsDialog::on_sendButton_clicked()
336336
}
337337
questionString.append(tr("Total Amount %1")
338338
.arg(BitcoinUnits::formatHtmlWithUnit(model->getOptionsModel()->getDisplayUnit(), totalAmount)));
339-
questionString.append(QString("<span style='font-size:10pt;font-weight:normal;'><br />(=%2)</span>")
339+
questionString.append(QString("<span style='font-size:10pt;font-weight:normal;'><br />(=%1)</span>")
340340
.arg(alternativeUnits.join(" " + tr("or") + "<br />")));
341341

342342
questionString.append("<hr /><span>");

0 commit comments

Comments
 (0)