diff options
author | Max Kellermann <max@duempel.org> | 2013-01-26 01:18:12 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-26 01:23:02 +0100 |
commit | 3203a7dd8ce8db6afcc54d68d63b4f4af7dc4c7f (patch) | |
tree | 3e88008b1fbe0bebd676aac29b3415a7edc6fdab /Makefile.am | |
parent | 86b0adc82ce64bb08518088c35ce754dc96d7062 (diff) | |
download | mpd-3203a7dd8ce8db6afcc54d68d63b4f4af7dc4c7f.tar.gz mpd-3203a7dd8ce8db6afcc54d68d63b4f4af7dc4c7f.tar.xz mpd-3203a7dd8ce8db6afcc54d68d63b4f4af7dc4c7f.zip |
tag_file: convert to C++
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 577055d51..f8f5ae951 100644 --- a/Makefile.am +++ b/Makefile.am @@ -269,7 +269,7 @@ src_mpd_SOURCES = \ src/TagPrint.cxx src/TagPrint.hxx \ src/TagSave.cxx src/TagSave.hxx \ src/tag_handler.c src/tag_handler.h \ - src/tag_file.c src/tag_file.h \ + src/TagFile.cxx src/TagFile.hxx \ src/tokenizer.c \ src/TextFile.cxx src/TextFile.hxx \ src/text_input_stream.c \ @@ -1115,7 +1115,7 @@ test_dump_playlist_SOURCES = test/dump_playlist.cxx \ src/ConfigFile.cxx src/tokenizer.c src/utils.c src/string_util.c\ src/uri.c \ src/Song.cxx src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagSave.cxx \ - src/tag_handler.c src/tag_file.c \ + src/tag_handler.c src/TagFile.cxx \ src/audio_check.c src/pcm_buffer.c \ src/text_input_stream.c \ src/cue/cue_parser.c src/cue/cue_parser.h \ |