From 83720540a1370ef455cf129beb3c30fe565e0b68 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 23 Nov 2022 19:00:38 +0100 Subject: CppEditor: Convert parts of ModelManagerInterface to FilePath Change-Id: If7503b6d6732e1735eb8d48ece6e80886d10c647 Reviewed-by: Christian Kandeler --- src/plugins/cppeditor/cppquickfixes.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/plugins/cppeditor/cppquickfixes.cpp') diff --git a/src/plugins/cppeditor/cppquickfixes.cpp b/src/plugins/cppeditor/cppquickfixes.cpp index 97f0c9500a..91181b91f5 100644 --- a/src/plugins/cppeditor/cppquickfixes.cpp +++ b/src/plugins/cppeditor/cppquickfixes.cpp @@ -7629,8 +7629,7 @@ void ConvertQt4Connect::match(const CppQuickFixInterface &interface, QuickFixOpe void ExtraRefactoringOperations::match(const CppQuickFixInterface &interface, QuickFixOperations &result) { - const auto processor = CppModelManager::cppEditorDocumentProcessor( - interface.filePath().toString()); + const auto processor = CppModelManager::cppEditorDocumentProcessor(interface.filePath()); if (processor) { const auto clangFixItOperations = processor->extraRefactoringOperations(interface); result.append(clangFixItOperations); -- cgit v1.2.1