summaryrefslogtreecommitdiff
path: root/tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools.c')
-rw-r--r--tools.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/tools.c b/tools.c
index 1045a0a2..8ae2c9d3 100644
--- a/tools.c
+++ b/tools.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.c 1.41 2001/08/25 13:21:22 kls Exp $
+ * $Id: tools.c 1.42 2001/08/26 13:11:17 kls Exp $
*/
#define _GNU_SOURCE
@@ -692,3 +692,19 @@ int cListBase::Count(void) const
return n;
}
+void cListBase::Sort(void)
+{
+ bool swapped;
+ do {
+ swapped = false;
+ cListObject *object = objects;
+ while (object) {
+ if (object->Next() && *object->Next() < *object) {
+ Move(object->Next(), object);
+ swapped = true;
+ }
+ object = object->Next();
+ }
+ } while (swapped);
+}
+