forked from qt-creator/qt-creator
ProjectExplorer: Fix project paths from welcome screen
Don't puto wrong delimiters into FilrPath. They create multitudes of problems down the road. Change-Id: I7a95494c0f59416b7468636b3786d7efdbbdf14e Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -2331,7 +2331,7 @@ void ProjectExplorerPluginPrivate::savePersistentSettings()
|
||||
|
||||
void ProjectExplorerPlugin::openProjectWelcomePage(const QString &fileName)
|
||||
{
|
||||
OpenProjectResult result = openProject(FilePath::fromString(fileName));
|
||||
OpenProjectResult result = openProject(FilePath::fromUserInput(fileName));
|
||||
if (!result)
|
||||
showOpenProjectError(result);
|
||||
}
|
||||
|
Reference in New Issue
Block a user