forked from qt-creator/qt-creator
Utils: Replace QVector with QList
Make usages of QList consistent. In some cases the declaration contained QVector arg, while the definition had QList arg. Remove some unneeded includes of QList. Change-Id: I7c15b39f261cefdeec6aaaf506ff4cc981432855 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -88,10 +88,10 @@ public:
|
||||
|
||||
QHash<QByteArray, MacroExpander::StringFunction> m_map;
|
||||
QHash<QByteArray, MacroExpander::PrefixFunction> m_prefixMap;
|
||||
QVector<MacroExpander::ResolverFunction> m_extraResolvers;
|
||||
QList<MacroExpander::ResolverFunction> m_extraResolvers;
|
||||
QMap<QByteArray, QString> m_descriptions;
|
||||
QString m_displayName;
|
||||
QVector<MacroExpanderProvider> m_subProviders;
|
||||
QList<MacroExpanderProvider> m_subProviders;
|
||||
bool m_accumulating = false;
|
||||
|
||||
bool m_aborted = false;
|
||||
|
||||
Reference in New Issue
Block a user