From 9ef4ea40f27befa4b5b553c3dfa94d979a34748c Mon Sep 17 00:00:00 2001
From: dt <qtc-committer@nokia.com>
Date: Thu, 12 May 2011 11:51:17 +0200
Subject: [PATCH] make Tasks sortable

Sorting according to severity then id

Reviewed-By: hunger
---
 src/plugins/projectexplorer/task.cpp | 23 +++++++++++++++++++++++
 src/plugins/projectexplorer/task.h   |  6 ++++--
 2 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/src/plugins/projectexplorer/task.cpp b/src/plugins/projectexplorer/task.cpp
index 63574c74d60..a1571b91b8a 100644
--- a/src/plugins/projectexplorer/task.cpp
+++ b/src/plugins/projectexplorer/task.cpp
@@ -65,6 +65,29 @@ bool operator==(const Task &t1, const Task &t2)
     return t1.taskId == t2.taskId;
 }
 
+bool operator<(const Task &a, const Task &b)
+{
+    if (a.type != b.type) {
+        if (a.type == ProjectExplorer::Task::Error)
+            return true;
+        if (b.type == ProjectExplorer::Task::Error)
+            return false;
+        if (a.type == ProjectExplorer::Task::Warning)
+            return true;
+        if (b.type == ProjectExplorer::Task::Warning)
+            return false;
+        // Can't happen
+        return true;
+    } else {
+        if (a.category < b.category)
+            return true;
+        if (b.category < a.category)
+            return false;
+        return a.taskId < b.taskId;
+    }
+}
+
+
 uint qHash(const Task &task)
 {
     return task.taskId;
diff --git a/src/plugins/projectexplorer/task.h b/src/plugins/projectexplorer/task.h
index ad5f3ec9a6c..66c22b64df3 100644
--- a/src/plugins/projectexplorer/task.h
+++ b/src/plugins/projectexplorer/task.h
@@ -76,8 +76,10 @@ private:
     static unsigned int s_nextId;
 };
 
-bool operator==(const Task &t1, const Task &t2);
-uint qHash(const Task &task);
+bool PROJECTEXPLORER_EXPORT operator==(const Task &t1, const Task &t2);
+uint PROJECTEXPLORER_EXPORT qHash(const Task &task);
+
+bool PROJECTEXPLORER_EXPORT operator<(const Task &a, const Task &b);
 
 } //namespace ProjectExplorer
 
-- 
GitLab