QmlDesigner: Fix typo in message box title

Change-Id: Ie5f19422ee1ed10721486fb9bb63bf638476e71d
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
(cherry picked from commit b208c5859c)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Henning Gruendl
2025-05-15 17:09:07 +02:00
committed by Tim Jenssen
parent 17e91ce1ce
commit 04faf8820a

View File

@@ -112,7 +112,7 @@ void DesignSystemWidget::reloadQmlSource()
errorString += "\n" + error.toString(); errorString += "\n" + error.toString();
Core::AsynchronousMessageBox::warning(tr("Cannot Create QtQuick View"), Core::AsynchronousMessageBox::warning(tr("Cannot Create QtQuick View"),
tr("StatesEditorWidget: %1 cannot be created.%2") tr("DesignSystemWidget: %1 cannot be created.%2")
.arg(qmlSourcesPath(), errorString)); .arg(qmlSourcesPath(), errorString));
return; return;
} }