mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 22:45:15 -04:00
Fixed string formatting minor error found by Mingun.
This commit is contained in:
parent
05b89be8bf
commit
fcbf7d7deb
@ -302,7 +302,7 @@ bool Launcher::DataFilesPage::showDeleteMessageBox (const QString &text)
|
||||
msgBox.setWindowTitle(tr("Delete Content List"));
|
||||
msgBox.setIcon(QMessageBox::Warning);
|
||||
msgBox.setStandardButtons(QMessageBox::Cancel);
|
||||
msgBox.setText(tr("Are you sure you want to delete <b>%0</b>?").arg(text));
|
||||
msgBox.setText(tr("Are you sure you want to delete <b>%1</b>?").arg(text));
|
||||
|
||||
QAbstractButton *deleteButton =
|
||||
msgBox.addButton(tr("Delete"), QMessageBox::ActionRole);
|
||||
|
Loading…
x
Reference in New Issue
Block a user