Mercurial > hg > svcore
diff data/fileio/OggVorbisFileReader.cpp @ 1036:682d64f05e72
Merge
author | Chris Cannam |
---|---|
date | Mon, 02 Mar 2015 17:21:34 +0000 |
parents | 1ecd533a9977 |
children | a1cd5abcb38b |
line wrap: on
line diff
--- a/data/fileio/OggVorbisFileReader.cpp Mon Mar 02 17:17:59 2015 +0000 +++ b/data/fileio/OggVorbisFileReader.cpp Mon Mar 02 17:21:34 2015 +0000 @@ -173,11 +173,11 @@ if (!reader->m_commentsRead) { const FishSoundComment *comment; - comment = fish_sound_comment_first_byname(fs, "TITLE"); + comment = fish_sound_comment_first_byname(fs, (char *)"TITLE"); if (comment && comment->value) { reader->m_title = QString::fromUtf8(comment->value); } - comment = fish_sound_comment_first_byname(fs, "ARTIST"); + comment = fish_sound_comment_first_byname(fs, (char *)"ARTIST"); if (comment && comment->value) { reader->m_maker = QString::fromUtf8(comment->value); }