aboutsummaryrefslogtreecommitdiffstats
path: root/src/tagTracker.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-11-10 18:55:38 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-11-10 18:55:38 +0000
commitb7d0e8901041dcee4df5fc3260b0fdfea27353dd (patch)
tree92ece541502daf05f2c0bed8dc8b005fff9dfccc /src/tagTracker.c
parent732888a2e332829551049deb0a95d78b7733e2a0 (diff)
downloadmpd-b7d0e8901041dcee4df5fc3260b0fdfea27353dd.tar.gz
mpd-b7d0e8901041dcee4df5fc3260b0fdfea27353dd.tar.xz
mpd-b7d0e8901041dcee4df5fc3260b0fdfea27353dd.zip
sort tagtracker stuff and todo update
git-svn-id: https://svn.musicpd.org/mpd/branches/r2562-metadata-handling-rewrite@2579 09075e82-0dd4-0310-85a5-a0d7c8717e4f
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]);
+ }
+}