From kde-bugs-dist Fri Sep 23 22:27:24 2005 From: LiuCougar Date: Fri, 23 Sep 2005 22:27:24 +0000 To: kde-bugs-dist Subject: [Bug 89747] Issues saving new tags with recoded 8bit encoding Message-Id: <20050923222724.5707.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=112751445515407 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=89747 liucougar gmail com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED ------- Additional Comments From liucougar gmail com 2005-09-24 00:27 ------- SVN commit 463400 by liucougar: fixed writing back locale encoded mp3 tags BUG: 89747 M +1 -1 app.cpp --- trunk/extragear/multimedia/amarok/src/app.cpp #463399:463400 @ -369,7 +369,7 @ virtual TagLib::ByteVector render( const TagLib::String &ts ) const { - const QCString qcs = m_codec->fromUnicode( ts.toCString( true ) ); + const QCString qcs = m_codec->fromUnicode( TStringToQString(ts) ); return TagLib::ByteVector( qcs, qcs.length() ); }