Fix String::data() for UTF16 -- there was a missing break in the case

statement, so both the UTF16 and the UTF16BE versions were being executed.

CCMAIL:Ilya Konstantinov <future@shiny.co.il>


git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@290210 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler 2004-02-22 12:51:32 +00:00
parent b23b37eb73
commit 9a63f34627

View File

@ -312,6 +312,7 @@ ByteVector String::data(Type t) const
v.append(c1);
v.append(c2);
}
break;
}
case UTF16BE:
{