Changeset 149 for trunk/savebmp.cpp
- Timestamp:
- Dec 24, 2021, 10:25:17 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/savebmp.cpp
r137 r149 580 580 lang = getenv("LANG"); 581 581 bUniCodeFont = FALSE; 582 if ( !strnicmp(lang, "ru", 2)) {582 if (pset->GetLangID() == RU) { 583 583 hmq = WinQueryWindowULong( hwnd, QWL_HMQ); 584 584 WinSetCp(hmq, 866); 585 585 //bUniCodeFont = TRUE; 586 586 } 587 else if (pset->GetLangID() == CZ || !strnicmp(lang, "pl", 2)) {587 else if (pset->GetLangID() == CZ || pset->GetLangID() == PL) { 588 588 hmq = WinQueryWindowULong( hwnd, QWL_HMQ); 589 589 WinSetCp(hmq, 852); 590 bUniCodeFont = TRUE;590 //bUniCodeFont = TRUE; 591 591 } 592 592 else {
Note:
See TracChangeset
for help on using the changeset viewer.