locate: no CamelCase

Renamed functions and variables.
This commit is contained in:
Max Kellermann
2009-01-24 15:26:59 +01:00
parent daa5f5924d
commit 3582977e01
5 changed files with 76 additions and 89 deletions
+3 -3
View File
@@ -93,11 +93,11 @@ queue_search(struct client *client, const struct queue *queue,
for (i = 0; i < queue_length(queue); i++) {
const struct song *song = queue_get(queue, i);
if (strstrSearchTags(song, num_items, new_items))
if (locate_song_search(song, num_items, new_items))
queue_print_song_info(client, queue, i);
}
freeLocateTagItemArray(num_items, new_items);
locate_item_list_free(num_items, new_items);
}
void
@@ -107,7 +107,7 @@ queue_find(struct client *client, const struct queue *queue,
for (unsigned i = 0; i < queue_length(queue); i++) {
const struct song *song = queue_get(queue, i);
if (tagItemsFoundAndMatches(song, num_items, items))
if (locate_song_match(song, num_items, items))
queue_print_song_info(client, queue, i);
}
}