QmlProjectManager: more libraryPaths -> importPaths renames.

See c722282cf3.
This commit is contained in:
Christian Kamm
2010-03-21 09:36:54 +01:00
parent d37771d7dd
commit a3187addc5
5 changed files with 13 additions and 13 deletions

View File

@@ -85,14 +85,14 @@ QStringList QmlProjectItem::importPaths() const
return d->importPaths;
}
void QmlProjectItem::setImportPaths(const QStringList &libraryPaths)
void QmlProjectItem::setImportPaths(const QStringList &importPaths)
{
Q_D(QmlProjectItem);
if (d->importPaths == libraryPaths)
if (d->importPaths == importPaths)
return;
d->importPaths = libraryPaths;
d->importPaths = importPaths;
emit importPathsChanged();
}