aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/taskmodel.h
diff options
context:
space:
mode:
authorDaniel Teske <daniel.teske@nokia.com>2012-02-22 14:13:53 +0100
committerDaniel Teske <daniel.teske@nokia.com>2012-02-22 16:36:26 +0100
commit0f853bb49875c2ec5fc461e6aac946d3da2da328 (patch)
treece37f3bc4171ff6cbfcaffb28615621f780948a7 /src/plugins/projectexplorer/taskmodel.h
parentbc193874ef697a1ca5d950cfac62aab984861462 (diff)
TaskModel: Sort task by id
Makes it easier to later find the task again, and does actually not change the order in the normal case Change-Id: I2f36f2e7a6ab52c06e35be22820438a809ecb012 Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/taskmodel.h')
-rw-r--r--src/plugins/projectexplorer/taskmodel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/taskmodel.h b/src/plugins/projectexplorer/taskmodel.h
index d977b2547f..1dfb6733c9 100644
--- a/src/plugins/projectexplorer/taskmodel.h
+++ b/src/plugins/projectexplorer/taskmodel.h
@@ -116,7 +116,7 @@ private:
};
QHash<Core::Id,CategoryData> m_categories; // category id to data
- QList<Task> m_tasks; // all tasks (in order of insertion)
+ QList<Task> m_tasks; // all tasks (in order of id)
QHash<QString,bool> m_fileNotFound;
int m_maxSizeOfFileName;