summaryrefslogtreecommitdiff
path: root/src/sortlist_type.h
diff options
context:
space:
mode:
authorskidd13 <skidd13@openttd.org>2008-05-27 10:27:30 +0000
committerskidd13 <skidd13@openttd.org>2008-05-27 10:27:30 +0000
commit6d46851b61e482965412d2e4b74d1846efefe21d (patch)
treefd62823c74718a114d36433d78d65548e47df97f /src/sortlist_type.h
parente42690b38166a3bde7aec37a51547a45f6bee102 (diff)
downloadopenttd-6d46851b61e482965412d2e4b74d1846efefe21d.tar.xz
(svn r13286) -Codechange: GUIList Sort returns now if the list sequence has been altered
Diffstat (limited to 'src/sortlist_type.h')
-rw-r--r--src/sortlist_type.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/sortlist_type.h b/src/sortlist_type.h
index 7ae99dd6b..6e6d9c7fa 100644
--- a/src/sortlist_type.h
+++ b/src/sortlist_type.h
@@ -188,18 +188,19 @@ public:
* sorted data.
*
* @param compare The function to compare two list items
+ * @return true if the list sequence has been altered
* */
- FORCEINLINE void Sort(SortFunction *compare)
+ FORCEINLINE bool Sort(SortFunction *compare)
{
/* Do not sort if the resort bit is not set */
- if (!HASBITS(this->flags, VL_RESORT)) return;
+ if (!HASBITS(this->flags, VL_RESORT)) return false;
CLRBITS(this->flags, VL_RESORT);
this->ResetResortTimer();
/* Do not sort when the list is not sortable */
- if (!this->IsSortable()) return;
+ if (!this->IsSortable()) return false;
const bool desc = HASBITS(this->flags, VL_DESC);
@@ -207,7 +208,7 @@ public:
qsort(this->data, this->items, sizeof(T), (int (CDECL *)(const void *, const void *))compare);
if (desc) this->Reverse();
- return;
+ return true;
}
T *a = this->data;
@@ -238,6 +239,7 @@ public:
}
}
}
+ return true;
}
/**
@@ -253,11 +255,13 @@ public:
/**
* Overload of Sort()
* Overloaded to reduce external code
+ *
+ * @return true if the list sequence has been altered
*/
- void Sort()
+ bool Sort()
{
assert(this->func_list != NULL);
- this->Sort(this->func_list[this->sort_type]);
+ return this->Sort(this->func_list[this->sort_type]);
}
/**