Changeset 593 for trunk/dll/dircnrs.c


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

Changes to remove GetPString from window class names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/dircnrs.c

    r552 r593  
    2121  15 Aug 06 SHL Rework warning message text
    2222  07 Jan 07 GKY Move error strings etc. to string file
     23  30 Mar 07 GKY Remove GetPString for window class names
    2324
    2425***********************************************************************/
     
    28642865              li->type = WinDlgBox(HWND_DESKTOP, dcd->hwndParent,
    28652866                                   DropListProc, FM3ModHandle,
    2866                                    DND_FRAME, MPFROMP(&cl));
    2867               if (!li->type) {
     2867                                   DND_FRAME, MPFROMP(&cl));
     2868              if (li->type == DID_ERROR)
     2869                  Win_Error(DND_FRAME, HWND_DESKTOP, pszSrcFile, __LINE__,
     2870                            "Drag & Drop Dialog");
     2871              if (!li->type) {
    28682872                FreeListInfo(li);
    28692873                return 0;
    28702874              }
    28712875              li->list = cl.list;
    2872               if (!li->list || !li->list[0]) {
     2876              if (!li->list || !li->list[0]) {
    28732877                FreeListInfo(li);
    28742878                return 0;
     
    33703374                                   WS_VISIBLE,
    33713375                                   &FrameFlags,
    3372                                    GetPString(IDS_WCDIRCONTAINER),
     3376                                   WC_DIRCONTAINER,
    33733377                                   NULL,
    33743378                                   WS_VISIBLE | fwsAnimate,
     
    34323436              ids[6] = 0;
    34333437            CommonCreateTextChildren(dcd->hwndClient,
    3434                                      GetPString(IDS_WCDIRSTATUS), ids);
     3438                                     WC_DIRSTATUS, ids);
    34353439          }
    34363440          if (!PostMsg(dcd->hwndCnr, UM_SETUP, MPVOID, MPVOID))
Note: See TracChangeset for help on using the changeset viewer.