* Fixed locking of the FT_Face by moving it into Get/PutTransformedFace()

* Removed the FaceGetter as it was only needed for locking
* Cleaned up TruncateString()
* Fixed a typo in moreUTF8.h

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16252 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2006-02-06 17:42:18 +00:00
parent bed39219c1
commit 9e7948f45e
2 changed files with 30 additions and 51 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ UTF8ToCharCode(const char **bytes)
if ((*bytes)[0] & 0x10) {
if ((*bytes)[0] & 0x08) {
/* A five byte char?!
Something's wrong, substitue. */
Something's wrong, substitute. */
result += 0x20;
(*bytes)++;
return result;