diff options
author | Max Kellermann <max@duempel.org> | 2013-01-02 20:29:24 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-02 20:29:24 +0100 |
commit | 3bbb5023871aaba48b6f503dd53d864f9a44c07d (patch) | |
tree | ef14110d995c212fe32a6e4814677a73ee1db9dc /Makefile.am | |
parent | 0023dffd0bf8c5793e8e92b9eec9702a296ed8d2 (diff) | |
download | mpd-3bbb5023871aaba48b6f503dd53d864f9a44c07d.tar.gz mpd-3bbb5023871aaba48b6f503dd53d864f9a44c07d.tar.xz mpd-3bbb5023871aaba48b6f503dd53d864f9a44c07d.zip |
*_print: convert to C++
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 0b39fdf96..2b88016e5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -162,9 +162,8 @@ mpd_headers = \ src/replay_gain_info.h \ src/replay_gain_ape.h \ src/sig_handlers.h \ - src/time_print.c src/time_print.h \ + src/TimePrint.cxx src/TimePrint.hxx \ src/song.h \ - src/song_print.h \ src/song_sticker.h \ src/song_sort.c src/song_sort.h \ src/socket_util.h \ @@ -178,7 +177,6 @@ mpd_headers = \ src/tag_ape.h \ src/tag_id3.h \ src/tag_rva2.h \ - src/tag_print.h \ src/tokenizer.h \ src/strset.h \ src/uri.h \ @@ -316,7 +314,7 @@ src_mpd_SOURCES = \ src/sig_handlers.c \ src/Song.cxx \ src/song_update.c \ - src/song_print.c \ + src/SongPrint.cxx src/SongPrint.hxx \ src/SongSave.cxx src/SongSave.hxx \ src/resolver.c src/resolver.h \ src/socket_util.c \ @@ -324,7 +322,7 @@ src_mpd_SOURCES = \ src/Stats.cxx \ src/tag.c \ src/tag_pool.c \ - src/tag_print.c \ + 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 \ |