diff options
author | Tim Jenssen <[email protected]> | 2020-01-06 14:48:51 +0100 |
---|---|---|
committer | Tim Jenssen <[email protected]> | 2020-01-08 09:55:29 +0000 |
commit | 50a350f0a39585916ce4af14142543810a5a806a (patch) | |
tree | 353c6567631af068795006148bacb9de945ed0a2 /src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h | |
parent | eef4a191259a874204405ea6572a594abaec1e1b (diff) |
QmlProject: move/rename MainQmlFileAspect to QmlMainFileAspect
Will be used later in LocalQmlPreviewSupport so add also
export and dependencies in the build system files.
Change-Id: Ie5d26e7b89342c3ae3ff682a73194f240b71c21a
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h index d905f2758b1..afb16ddbb7a 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h @@ -28,11 +28,13 @@ #include "qmlprojectmanager_global.h" #include <projectexplorer/runconfiguration.h> -#include <projectexplorer/runconfigurationaspects.h> +namespace ProjectExplorer { +class BaseStringAspect; +} namespace QmlProjectManager { -class MainQmlFileAspect; +class QmlMainFileAspect; class QMLPROJECTMANAGER_EXPORT QmlProjectRunConfiguration : public ProjectExplorer::RunConfiguration { @@ -50,8 +52,8 @@ private: Utils::FilePath qmlScenePath() const; QString commandLineArguments() const; - ProjectExplorer::BaseStringAspect *m_qmlViewerAspect; - MainQmlFileAspect *m_mainQmlFileAspect; + ProjectExplorer::BaseStringAspect *m_qmlViewerAspect = nullptr; + QmlMainFileAspect *m_qmlMainFileAspect = nullptr; }; namespace Internal { |