diff options
Diffstat (limited to 'src/playlist/XspfPlaylistPlugin.cxx')
-rw-r--r-- | src/playlist/XspfPlaylistPlugin.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/playlist/XspfPlaylistPlugin.cxx b/src/playlist/XspfPlaylistPlugin.cxx index a0bb33f1c..cb3d19033 100644 --- a/src/playlist/XspfPlaylistPlugin.cxx +++ b/src/playlist/XspfPlaylistPlugin.cxx @@ -21,7 +21,7 @@ #include "XspfPlaylistPlugin.hxx" #include "MemoryPlaylistProvider.hxx" #include "input_stream.h" -#include "tag.h" +#include "Tag.hxx" #include <glib.h> @@ -177,9 +177,8 @@ xspf_text(G_GNUC_UNUSED GMarkupParseContext *context, if (parser->song != NULL && parser->tag != TAG_NUM_OF_ITEM_TYPES) { if (parser->song->tag == NULL) - parser->song->tag = tag_new(); - tag_add_item_n(parser->song->tag, parser->tag, - text, text_len); + parser->song->tag = new Tag(); + parser->song->tag->AddItem(parser->tag, text, text_len); } break; |