diff options
author | Christian Kamm <christian.d.kamm@nokia.com> | 2010-09-21 14:28:55 +0200 |
---|---|---|
committer | Christian Kamm <christian.d.kamm@nokia.com> | 2010-09-21 14:56:25 +0200 |
commit | 427f7754894fab55bb388bca78583dec3350ed42 (patch) | |
tree | 70828904f5066cbf21b48330dc573f7452c5667b /src/plugins/qt4projectmanager/qt4project.h | |
parent | 59c58a0c27d9cb1e1b4770a1a8a4acfb018d3123 (diff) | |
download | qt-creator-427f7754894fab55bb388bca78583dec3350ed42.tar.gz |
QmlJS: Allow setting import paths in Qt4Projects using QML_IMPORT_PATH.
Introduced new Creator-specific qmake variable QML_IMPORT_PATH that
lists the import paths required by the QmlJS engine.
Done-with: Alessandro Portale
Diffstat (limited to 'src/plugins/qt4projectmanager/qt4project.h')
-rw-r--r-- | src/plugins/qt4projectmanager/qt4project.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/qt4projectmanager/qt4project.h b/src/plugins/qt4projectmanager/qt4project.h index 25e550a7fe..c39215911c 100644 --- a/src/plugins/qt4projectmanager/qt4project.h +++ b/src/plugins/qt4projectmanager/qt4project.h @@ -217,7 +217,9 @@ private: void scheduleAsyncUpdate(); void createApplicationProjects(); - void updateCodeModel(); + void updateCodeModels(); + void updateCppCodeModel(); + void updateQmlJSCodeModel(); void updateFileList(); static void collectLeafProFiles(QList<Internal::Qt4ProFileNode *> &list, Internal::Qt4ProFileNode *node); |