aboutsummaryrefslogtreecommitdiffstats
path: root/src/tagTracker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tagTracker.c')
-rw-r--r--src/tagTracker.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/tagTracker.c b/src/tagTracker.c
index 56480167b..cea02f471 100644
--- a/src/tagTracker.c
+++ b/src/tagTracker.c
@@ -93,3 +93,13 @@ void printMemorySavedByTagTracker() {
DEBUG("saved memory: %li\n", (long)sum);
}
+
+void sortTagTrackerInfo() {
+ int i;
+
+ for(i = 0; i < TAG_NUM_OF_ITEM_TYPES; i++) {
+ if(!tagLists[i]) continue;
+
+ sortList(tagLists[i]);
+ }
+}