forked from qt-creator/qt-creator
ProjectNode: Rename path() to filePath()
Change-Id: I78bb73f8c9457fd74c470eacbf54eb9195ac9681 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
@@ -135,7 +135,7 @@ void IosRunConfiguration::deviceChanges() {
|
||||
void IosRunConfiguration::proFileUpdated(QmakeProFileNode *pro, bool success,
|
||||
bool parseInProgress)
|
||||
{
|
||||
if (m_profilePath != pro->path())
|
||||
if (m_profilePath != pro->filePath())
|
||||
return;
|
||||
m_parseSuccess = success;
|
||||
m_parseInProgress = parseInProgress;
|
||||
|
||||
@@ -135,7 +135,7 @@ QList<RunConfiguration *> IosRunConfigurationFactory::runConfigurationsForNode(T
|
||||
QList<RunConfiguration *> result;
|
||||
foreach (RunConfiguration *rc, t->runConfigurations()) {
|
||||
if (IosRunConfiguration *qt4c = qobject_cast<IosRunConfiguration *>(rc)) {
|
||||
if (qt4c->profilePath() == n->path())
|
||||
if (qt4c->profilePath() == n->filePath())
|
||||
result << rc;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user