Changeset 290 for branches


Ignore:
Timestamp:
Sep 5, 2005, 8:20:43 PM (20 years ago)
Author:
pr
Message:

Bart's fix for bug 655

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1-0/src/helpers/winh.c

    r276 r290  
    29142914 *
    29152915 *@@added V0.9.0 [umoeller]
     2916 *@@changed V1.0.4 (2005-09-02) [bvl]: Return 'Combined' fonts on DBCS systems to show DBCS characters properly @@fixes 655
    29162917 */
    29172918
     
    29242925    {
    29252926        if (doshIsWarp4())
    2926             strhncpy0(szFont, "9.WarpSans", sizeof(szFont));
     2927            if(nlsDBCS())
     2928                strhncpy0(szFont, "9.WarpSans Combined", sizeof(szFont));
     2929            else
     2930                strhncpy0(szFont, "9.WarpSans", sizeof(szFont));
    29272931        else
    2928             strhncpy0(szFont, "8.Helv", sizeof(szFont));
     2932            if(nlsDBCS())
     2933                strhncpy0(szFont, "8.Helv Combined", sizeof(szFont));
     2934            else
     2935                strhncpy0(szFont, "8.Helv", sizeof(szFont));
    29292936    }
    29302937    else
     
    29492956 *
    29502957 *@@added V0.9.0 [umoeller]
     2958 *@@changed V1.0.4 (2005-09-02) [bvl]: Return 'Combined' fonts on DBCS systems to show DBCS characters properly @@fixes 655
    29512959 */
    29522960
     
    29652973    {
    29662974        if (doshIsWarp4())
    2967             strhncpy0(szFont, "9.WarpSans", sizeof(szFont));
     2975            if(nlsDBCS())
     2976                strhncpy0(szFont, "9.WarpSans Combined", sizeof(szFont));
     2977            else
     2978                strhncpy0(szFont, "9.WarpSans", sizeof(szFont));
    29682979        else
    2969             strhncpy0(szFont, "8.Helv", sizeof(szFont));
     2980            if(nlsDBCS())
     2981                strhncpy0(szFont, "8.Helv Combined", sizeof(szFont));
     2982            else
     2983                strhncpy0(szFont, "8.Helv", sizeof(szFont));
    29702984    }
    29712985    else
Note: See TracChangeset for help on using the changeset viewer.