forked from qt-creator/qt-creator
Utils: Replace FileChooser::path() by filePath().toString()
Keep the old method for now to ease downstream porting. The change is kept mechanical, there's a lot of cleanup possible now on the user code side. Change-Id: I936baedd45b7ba057f1c789a1bec896886f48eff Reviewed-by: André Hartmann <aha_1980@gmx.de> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -412,7 +412,7 @@ void AttachCoreDialog::selectRemoteCoreFile()
|
||||
|
||||
QString AttachCoreDialog::localCoreFile() const
|
||||
{
|
||||
return d->localCoreFileName->path();
|
||||
return d->localCoreFileName->filePath().toString();
|
||||
}
|
||||
|
||||
FilePath AttachCoreDialog::symbolFile() const
|
||||
@@ -462,7 +462,7 @@ Kit *AttachCoreDialog::kit() const
|
||||
|
||||
QString AttachCoreDialog::overrideStartScript() const
|
||||
{
|
||||
return d->overrideStartScriptFileName->path();
|
||||
return d->overrideStartScriptFileName->filePath().toString();
|
||||
}
|
||||
|
||||
void AttachCoreDialog::setOverrideStartScript(const QString &scriptName)
|
||||
|
||||
Reference in New Issue
Block a user