forked from qt-creator/qt-creator
ProjectExplorer: Introduce a alias for QList<Tasks>
Change-Id: I91391ad22b420926b0f512cac23cfe009048b218 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -53,7 +53,7 @@ public:
|
||||
QString categoryDisplayName(Core::Id categoryId) const;
|
||||
void addCategory(Core::Id categoryId, const QString &categoryName);
|
||||
|
||||
QList<Task> tasks(Core::Id categoryId = Core::Id()) const;
|
||||
Tasks tasks(Core::Id categoryId = Core::Id()) const;
|
||||
void addTask(const Task &t);
|
||||
void removeTask(unsigned int id);
|
||||
void clearTasks(Core::Id categoryId = Core::Id());
|
||||
@@ -110,7 +110,7 @@ private:
|
||||
};
|
||||
|
||||
QHash<Core::Id,CategoryData> m_categories; // category id to data
|
||||
QList<Task> m_tasks; // all tasks (in order of id)
|
||||
Tasks m_tasks; // all tasks (in order of id)
|
||||
|
||||
QHash<QString,bool> m_fileNotFound;
|
||||
QFont m_fileMeasurementFont;
|
||||
|
||||
Reference in New Issue
Block a user