mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 21:45:32 +00:00
Fixed string formatting minor error found by Mingun.
This commit is contained in:
parent
05b89be8bf
commit
fcbf7d7deb
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue