]> git.ipfire.org Git - ipfire-3.x.git/blob - qt/patches/qt-4.6.3-bn-rendering-bz562058.patch
Change file layout of the makefiles.
[ipfire-3.x.git] / qt / patches / qt-4.6.3-bn-rendering-bz562058.patch
1 diff -rup qt-everywhere-opensource-src-4.7.0-beta2/src/3rdparty/harfbuzz/src/harfbuzz-indic.cpp qt-everywhere-opensource-src-4.7.0-beta2_mod/src/3rdparty/harfbuzz/src/harfbuzz-indic.cpp
2 --- qt-everywhere-opensource-src-4.7.0-beta2/src/3rdparty/harfbuzz/src/harfbuzz-indic.cpp 2010-06-30 07:23:12.000000000 +0530
3 +++ qt-everywhere-opensource-src-4.7.0-beta2_mod/src/3rdparty/harfbuzz/src/harfbuzz-indic.cpp 2010-09-22 14:33:33.000000000 +0530
4 @@ -37,7 +37,7 @@ static HB_Bool isLetter(HB_UChar16 ucs)
5 FLAG(HB_Letter_Titlecase) |
6 FLAG(HB_Letter_Modifier) |
7 FLAG(HB_Letter_Other);
8 - return FLAG(HB_GetUnicodeCharCategory(ucs)) & test;
9 + return (FLAG(HB_GetUnicodeCharCategory(ucs)) & test) != 0;
10 }
11
12 static HB_Bool isMark(HB_UChar16 ucs)