forked from qt-creator/qt-creator
QmlDesigner: Fix crash
The nullptr does crash. We can use a proper QmlJSQuickFixAssistInterface created from the editor instead. Task-number: QDS-9573 Change-Id: I5ea2792acb311c37e1005ff039ed7110503dfb4f Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -8,10 +8,13 @@
|
||||
|
||||
namespace QmlJSEditor {
|
||||
|
||||
class QmlJSEditorWidget;
|
||||
|
||||
QMLJSEDITOR_EXPORT void matchComponentFromObjectDefQuickFix(
|
||||
const Internal::QmlJSQuickFixAssistInterface *interface, QuickFixOperations &result);
|
||||
|
||||
QMLJSEDITOR_EXPORT void performComponentFromObjectDef
|
||||
(const QString &fileName, QmlJS::AST::UiObjectDefinition *objDef);
|
||||
QMLJSEDITOR_EXPORT void performComponentFromObjectDef(QmlJSEditorWidget *editor,
|
||||
const QString &fileName,
|
||||
QmlJS::AST::UiObjectDefinition *objDef);
|
||||
|
||||
} // namespace QmlJSEditor
|
||||
|
||||
Reference in New Issue
Block a user