1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/x11-toolkits/qt31/files/patch-al

25 lines
770 B
Plaintext
Raw Normal View History

--- src/kernel/qfont.cpp Wed Jan 31 21:26:40 2001
+++ src/kernel/qfont.cpp.new Sat Feb 3 16:15:05 2001
@@ -202,6 +202,8 @@
<li> \c QFont::CP1251, Microsoft Cyrillic encoding
<li> \c QFont::PT154, Paratype Asian Cyrillic encoding
<li> \c QFont::AnyCharSet - whatever is handiest.
+ <li> \c QFont::CP_1251, Microsoft Cyrillic encoding
+ <li> \c QFont::PT_154, Paratype Asian Cyrillic encoding
<li> \c QFont::Set_Ja, Japanese
<li> \c QFont::Set_Ko, Korean
<li> \c QFont::Set_Th_TH
@@ -1023,6 +1025,12 @@
case QFont::KOI8U:
result = "koi8-u";
break;
+ case QFont::CP_1251:
+ result = "cp1251";
+ break;
+ case QFont::PT_154:
+ result = "pt154";
+ break;
case QFont::Set_Ja:
result = "Set_Ja";
break;