Changeset 1391 for trunk/dll/seeall.c


Ignore:
Timestamp:
Jan 12, 2009, 12:55:53 AM (17 years ago)
Author:
Gregg Young
Message:

Move nontranslated strings to init.c and codepage.c; use those strings in place of GetPString calls. Move other strings to a StringTable; minor cleanup and code changes to codepage.c to use a string array instead of GetPString calls. Ticket 340

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/seeall.c

    r1358 r1391  
    4040  10 Dec 08 SHL Integrate exception handler support
    4141  25 Dec 08 GKY Add code to allow write verify to be turned off on a per drive basis
     42  11 Jan 09 GKY Replace font names in the string file with global set at compile in init.c
     43  11 Jan 08 GKY Change flag on GetMLEFont to 3 from 11 to give a larger selection of mono spaced fonts
    4244
    4345***********************************************************************/
     
    33353337        pAD->hwndPopup =
    33363338          WinLoadMenu(HWND_DESKTOP, FM3ModHandle, SEEALL_POPUP);
    3337         if (pAD->hwndPopup) {
     3339        if (pAD->hwndPopup) {
     3340          //fixme to allow user to change presparams 1-10-09 GKY
    33383341          WinSetPresParam(pAD->hwndPopup, PP_FONTNAMESIZE,
    3339                           (ULONG) strlen(GetPString(IDS_8HELVTEXT)) + 1,
    3340                           (PVOID) GetPString(IDS_8HELVTEXT));
     3342                          strlen(FNT_8HELVETICA) + 1,
     3343                          FNT_8HELVETICA);
    33413344          SetConditionalCascade(pAD->hwndPopup,
    33423345                                IDM_DELETESUBMENU,
     
    40144017
    40154018    case IDM_FONTPALETTE:
    4016       SetMLEFont(hwnd, &pAD->fattrs, 11);
     4019      SetMLEFont(hwnd, &pAD->fattrs, 3);
    40174020      PrfWriteProfileData(fmprof,
    40184021                          appname,
Note: See TracChangeset for help on using the changeset viewer.