mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
rbutil: Replace QRegExp with QRegularExpression.
The former is not part of Qt6 anymore, while the latter has been introduced with Qt5. We don't support Qt4 anymore, so move to QRegularExpression. Change-Id: Icc15ef422790f3740660c5581294aa0536f46b1f
This commit is contained in:
parent
72071d108c
commit
9e28474e47
11 changed files with 41 additions and 37 deletions
|
|
@ -334,7 +334,7 @@ void SelectiveInstallWidget::installBootloader(void)
|
|||
PlayerBuildInfo::DisplayName).toString()
|
||||
+ " Firmware Backup";
|
||||
// remove invalid character(s)
|
||||
targetFolder.remove(QRegExp("[:/]"));
|
||||
targetFolder.remove(QRegularExpression("[:/]"));
|
||||
if(QMessageBox::question(this, tr("Create Bootloader backup"),
|
||||
tr("You can create a backup of the original bootloader "
|
||||
"file. Press \"Yes\" to select an output folder on your "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue