Mercurial > hg > svcore
diff data/fileio/OggVorbisFileReader.cpp @ 1056:c4898e57eea5 tonioni
Merge from default branch
author | Chris Cannam |
---|---|
date | Mon, 23 Mar 2015 10:04:48 +0000 |
parents | 1ecd533a9977 |
children | a1cd5abcb38b |
line wrap: on
line diff
--- a/data/fileio/OggVorbisFileReader.cpp Mon Nov 10 09:19:49 2014 +0000 +++ b/data/fileio/OggVorbisFileReader.cpp Mon Mar 23 10:04:48 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); }