From 195abefe7da8325816081c67062c89a11cf734da Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Mon, 1 Nov 2021 17:02:02 +0100 Subject: EditorManager: Remove QString openEditor(At) overloads In favor of the FilePath/Link ones. Change-Id: I5caf9e0f8de304ff4ee12329557aa50a6f3a0c69 Reviewed-by: Qt CI Bot Reviewed-by: David Schulz --- src/plugins/python/pythonrunconfiguration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/python/pythonrunconfiguration.cpp') diff --git a/src/plugins/python/pythonrunconfiguration.cpp b/src/plugins/python/pythonrunconfiguration.cpp index 4564e8a686..19d73ce77e 100644 --- a/src/plugins/python/pythonrunconfiguration.cpp +++ b/src/plugins/python/pythonrunconfiguration.cpp @@ -123,7 +123,7 @@ private: return false; const QString fileName = match.captured(3); const int lineNumber = match.captured(4).toInt(); - Core::EditorManager::openEditorAt(fileName, lineNumber); + Core::EditorManager::openEditorAt({FilePath::fromString(fileName), lineNumber}); return true; } -- cgit v1.2.1