rbutil: Fix wrong format string.
Only caused a warning, but no need to pass format parameters if there is no format string. Change-Id: Ifed38d8af3881c40e8609ccda3786cea23a3bc2f
This commit is contained in:
parent
9a52991bbd
commit
185dfb42c2
1 changed files with 1 additions and 1 deletions
|
@ -863,7 +863,7 @@ void Config::cacheClear()
|
|||
if(QMessageBox::critical(this, tr("Really delete cache?"),
|
||||
tr("Do you really want to delete the cache? "
|
||||
"Make absolutely sure this setting is correct as it will "
|
||||
"remove <b>all</b> files in this folder!").arg(ui.cachePath->text()),
|
||||
"remove <b>all</b> files in this folder!"),
|
||||
QMessageBox::Yes | QMessageBox::No) != QMessageBox::Yes)
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue