diff data/fileio/OggVorbisFileReader.cpp @ 1037:bf0e5944289b cxx11

Merge from default branch
author Chris Cannam
date Tue, 03 Mar 2015 09:33:59 +0000
parents 1ecd533a9977
children a1cd5abcb38b
line wrap: on
line diff
--- a/data/fileio/OggVorbisFileReader.cpp	Mon Feb 09 10:31:07 2015 +0000
+++ b/data/fileio/OggVorbisFileReader.cpp	Tue Mar 03 09:33:59 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);
         }