QmlProjectManager: Rename 'libraryPaths' property to 'importPaths'

Suggested by Erik Verbruggen
This commit is contained in:
Kai Koehne
2010-03-19 15:06:54 +01:00
parent bffeb830f5
commit c722282cf3
4 changed files with 14 additions and 14 deletions

View File

@@ -24,7 +24,7 @@ class QmlProjectItem : public QObject {
Q_PROPERTY(QDeclarativeListProperty<QmlProjectManager::QmlProjectContentItem> content READ content DESIGNABLE false)
Q_PROPERTY(QString sourceDirectory READ sourceDirectory NOTIFY sourceDirectoryChanged)
Q_PROPERTY(QStringList libraryPaths READ libraryPaths WRITE setLibraryPaths NOTIFY libraryPathsChanged)
Q_PROPERTY(QStringList importPaths READ importPaths WRITE setImportPaths NOTIFY importPathsChanged)
Q_CLASSINFO("DefaultProperty", "content");
@@ -37,8 +37,8 @@ public:
QString sourceDirectory() const;
void setSourceDirectory(const QString &directoryPath);
QStringList libraryPaths() const;
void setLibraryPaths(const QStringList &paths);
QStringList importPaths() const;
void setImportPaths(const QStringList &paths);
QStringList files() const;
bool matchesFile(const QString &filePath) const;
@@ -46,7 +46,7 @@ public:
signals:
void qmlFilesChanged();
void sourceDirectoryChanged();
void libraryPathsChanged();
void importPathsChanged();
protected:
QmlProjectItemPrivate *d_ptr;