forked from qt-creator/qt-creator
CorePlugin: Use FilePath istead of QString
Task-number: QTCREATORBUG-2616 Change-Id: Iaa5bc7946a7bddfd8adffe51906d90b2e76f5837 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -954,7 +954,7 @@ void MainWindow::openFileWith()
|
||||
const FilePaths filePaths = EditorManager::getOpenFilePaths();
|
||||
for (const FilePath &filePath : filePaths) {
|
||||
bool isExternal;
|
||||
const Id editorId = EditorManagerPrivate::getOpenWithEditorId(filePath.toString(), &isExternal);
|
||||
const Id editorId = EditorManagerPrivate::getOpenWithEditorId(filePath, &isExternal);
|
||||
if (!editorId.isValid())
|
||||
continue;
|
||||
if (isExternal)
|
||||
|
||||
Reference in New Issue
Block a user