diff options
Diffstat (limited to '')
-rw-r--r-- | src/song_sticker.c | 16 | ||||
-rw-r--r-- | src/song_sticker.h | 7 | ||||
-rw-r--r-- | src/sticker.c | 2 | ||||
-rw-r--r-- | src/sticker.h | 8 |
4 files changed, 1 insertions, 32 deletions
diff --git a/src/song_sticker.c b/src/song_sticker.c index 951b28871..54792678a 100644 --- a/src/song_sticker.c +++ b/src/song_sticker.c @@ -40,22 +40,6 @@ sticker_song_get_value(const struct song *song, const char *name) return value; } -GHashTable * -sticker_song_list_values(const struct song *song) -{ - char *uri; - GHashTable *hash; - - assert(song != NULL); - assert(song_in_database(song)); - - uri = song_get_uri(song); - hash = sticker_list_values("song", uri); - g_free(uri); - - return hash; -} - bool sticker_song_set_value(const struct song *song, const char *name, const char *value) diff --git a/src/song_sticker.h b/src/song_sticker.h index 3b27e91b6..9b32c9215 100644 --- a/src/song_sticker.h +++ b/src/song_sticker.h @@ -42,13 +42,6 @@ sticker_song_set_value(const struct song *song, const char *name, const char *value); /** - * Returns a hash table of key value pairs from a song's sticker record. - * The caller must free the GHashTable with g_hash_table_destroy(). - */ -GHashTable * -sticker_song_list_values(const struct song *song); - -/** * Deletes a sticker from the database. All values are deleted. */ bool diff --git a/src/sticker.c b/src/sticker.c index cad4e1c97..cb845001b 100644 --- a/src/sticker.c +++ b/src/sticker.c @@ -194,7 +194,7 @@ sticker_load_value(const char *type, const char *uri, const char *name) return value; } -GHashTable * +static GHashTable * sticker_list_values(const char *type, const char *uri) { int ret; diff --git a/src/sticker.h b/src/sticker.h index 9ca740d45..3de4801f9 100644 --- a/src/sticker.h +++ b/src/sticker.h @@ -67,14 +67,6 @@ bool sticker_enabled(void); /** - * Populates a GHashTable with GStrings of sticker keys and values - * from an object's sticker record. The caller must free the returned - * GHashTable with g_hash_list_destroy(). - */ -GHashTable * -sticker_list_values(const char *type, const char *uri); - -/** * Returns one value from an object's sticker record. The caller must * free the return value with g_free(). */ |