diff options
author | hjk <hjk@qt.io> | 2020-08-13 09:16:00 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2020-08-14 07:35:43 +0000 |
commit | 51e7bce10974143dad04d312117a28138d16ee74 (patch) | |
tree | 6717f38446e7785603dad8555039acf4c32e2f15 /src/plugins/debugger/debuggerrunconfigurationaspect.h | |
parent | e62044aa29b14b5db9229ec5b72cd4c4a7fa64c6 (diff) | |
download | qt-creator-51e7bce10974143dad04d312117a28138d16ee74.tar.gz |
ProjectExplorer: Rename Base*Aspect to *Aspect
In most cases they are used directly, so there's not much Base* in that.
Added the old name as alias as porting help for a while.
Change-Id: I494a8a560b8996bcf74915ea3570b504df6a6b4c
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/debugger/debuggerrunconfigurationaspect.h')
-rw-r--r-- | src/plugins/debugger/debuggerrunconfigurationaspect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerrunconfigurationaspect.h b/src/plugins/debugger/debuggerrunconfigurationaspect.h index 58619ee3ef..63d5dc3b3f 100644 --- a/src/plugins/debugger/debuggerrunconfigurationaspect.h +++ b/src/plugins/debugger/debuggerrunconfigurationaspect.h @@ -59,8 +59,8 @@ public: private: Internal::DebuggerLanguageAspect *m_cppAspect; Internal::DebuggerLanguageAspect *m_qmlAspect; - ProjectExplorer::BaseBoolAspect *m_multiProcessAspect; - ProjectExplorer::BaseStringAspect *m_overrideStartupAspect; + ProjectExplorer::BoolAspect *m_multiProcessAspect; + ProjectExplorer::StringAspect *m_overrideStartupAspect; ProjectExplorer::Target *m_target; }; |