Changeset 593 for trunk/dll/treecnr.c


Ignore:
Timestamp:
Mar 31, 2007, 9:13:59 PM (18 years ago)
Author:
Gregg Young
Message:

Changes to remove GetPString from window class names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/treecnr.c

    r557 r593  
    2525  08 Mar 07 SHL Ensure drive icon updates after drive flags change
    2626  09 Mar 07 GKY Use SelectDriveIcon
     27  30 Mar 07 GKY Remove GetPString for window class names
    2728
    2829***********************************************************************/
     
    13891390                                   dcd->hwndParent,
    13901391                                   DropListProc,
    1391                                    FM3ModHandle, DND_FRAME, MPFROMP(&cl));
    1392               if (!li->type) {
     1392                                   FM3ModHandle, DND_FRAME, MPFROMP(&cl));
     1393              if (li->type == DID_ERROR)
     1394                  Win_Error(hwnd, HWND_DESKTOP, pszSrcFile, __LINE__,
     1395                            "Drag & Drop Dialog");
     1396              if (!li->type) {
    13931397                FreeListInfo(li);
    13941398                return 0;
    13951399              }
    13961400              li->list = cl.list;
    1397               if (!li->list || !li->list[0]) {
     1401              if (!li->list || !li->list[0]) {
    13981402                FreeListInfo(li);
    13991403                return 0;
     
    29002904                                 WS_VISIBLE,
    29012905                                 &FrameFlags,
    2902                                  GetPString(IDS_WCTREECONTAINER),
     2906                                 WC_TREECONTAINER,
    29032907                                 NULL,
    29042908                                 WS_VISIBLE | fwsAnimate,
     
    29172921      if (*(ULONG *) realappname == FM3UL) {
    29182922        if (!WinCreateWindow(hwndFrame,
    2919                              GetPString(IDS_WCTREEOPENBUTTON),
     2923                             WC_TREEOPENBUTTON,
    29202924                             "O",
    29212925                             WS_VISIBLE | BS_PUSHBUTTON | BS_NOPOINTERFOCUS,
     
    29412945      else {
    29422946        if (!WinCreateWindow(hwndFrame,
    2943                              GetPString(IDS_WCTREESTATUS),
     2947                             WC_TREESTATUS,
    29442948                             GetPString(IDS_YOUAREHERETEXT),
    29452949                             WS_VISIBLE | SS_TEXT | DT_LEFT | DT_VCENTER,
Note: See TracChangeset for help on using the changeset viewer.