From 3de9ba2e9f7c5ecb1a930df9d1a379a4ce638e6e Mon Sep 17 00:00:00 2001 From: Scott Wheeler Date: Mon, 25 Jul 2005 21:34:18 +0000 Subject: [PATCH] Bug in UTF-8 rendering. Small change, but well, without the "break;" it was doing the UTF-8 rendering and the UTF16-LE rendering to the same string, which was, well, ungood. (Sorry Dan, that's bad news for those files -- but this bug was only introduced 4 days ago, so it just hadn't been caught yet.) BUG:109604 git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@438731 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- toolkit/tstring.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/toolkit/tstring.cpp b/toolkit/tstring.cpp index 16169bbc..1707a947 100644 --- a/toolkit/tstring.cpp +++ b/toolkit/tstring.cpp @@ -697,6 +697,8 @@ void String::prepare(Type t) delete [] sourceBuffer; delete [] targetBuffer; + + break; } case UTF16LE: { -- 2.50.1