diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-03-19 11:49:09 +0000 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2023-03-19 11:49:24 +0000 |
commit | ec8cb056bf717edb97bf3e65fbad0ffc1b78ec34 (patch) | |
tree | 6d582ff60a8b1391f3c40c50fef7eb3eee72f9c5 /launcher/ui/dialogs | |
parent | 1893871a99d26955e411b0b5dba4d2fe4368d96e (diff) | |
download | PrismLauncher-ec8cb056bf717edb97bf3e65fbad0ffc1b78ec34.tar.gz PrismLauncher-ec8cb056bf717edb97bf3e65fbad0ffc1b78ec34.tar.bz2 PrismLauncher-ec8cb056bf717edb97bf3e65fbad0ffc1b78ec34.zip |
QRegExp -> QRegularExpression :P
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'launcher/ui/dialogs')
-rw-r--r-- | launcher/ui/dialogs/ExportMrPackDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/ExportMrPackDialog.cpp b/launcher/ui/dialogs/ExportMrPackDialog.cpp index 28c719c7..02b6721d 100644 --- a/launcher/ui/dialogs/ExportMrPackDialog.cpp +++ b/launcher/ui/dialogs/ExportMrPackDialog.cpp @@ -34,7 +34,7 @@ ExportMrPackDialog::ExportMrPackDialog(InstancePtr instance, QWidget* parent) { ui->setupUi(this); ui->name->setText(instance->name()); - ui->summary->setText(instance->notes().split(QRegExp("\\r?\\n"))[0]); + ui->summary->setText(instance->notes().split(QRegularExpression("\\r?\\n"))[0]); auto model = new QFileSystemModel(this); // use the game root - everything outside cannot be exported |