Changeset 593 for trunk/dll/collect.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/collect.c

    r551 r593  
    3030  31 Aug 06 SHL Disable Utilities->Seek and scan menu while busy
    3131  31 Aug 06 SHL Correct stop scan context menu enable/disable
     32  30 Mar 07 GKY Remove GetPString for window class names
    3233
    3334***********************************************************************/
     
    22642265                li->type = WinDlgBox(HWND_DESKTOP, dcd->hwndParent,
    22652266                                     DropListProc, FM3ModHandle,
    2266                                      DND_FRAME, MPFROMP(&cl));
    2267                 if (!li->type) {
     2267                                     DND_FRAME, MPFROMP(&cl));
     2268                if (li->type == DID_ERROR)
     2269                  Win_Error(DND_FRAME, HWND_DESKTOP, pszSrcFile, __LINE__,
     2270                            "Drag & Drop Dialog");
     2271                if (!li->type) {
    22682272                  FreeListInfo(li);
    22692273                  return 0;
    22702274                }
    22712275                li->list = cl.list;
    2272                 if (!li->list || !li->list[0]) {
     2276                if (!li->list || !li->list[0]) {
    22732277                  FreeListInfo(li);
    22742278                  return 0;
     
    26342638                                 WS_VISIBLE,
    26352639                                 &FrameFlags,
    2636                                  GetPString(IDS_WCCOLLECTOR),
     2640                                 WC_COLLECTOR,
    26372641                                 NULL,
    26382642                                 WS_VISIBLE | fwsAnimate,
     
    27142718
    27152719          CommonCreateTextChildren(dcd->hwndClient,
    2716                                    GetPString(IDS_WCCOLSTATUS), ids);
     2720                                   WC_COLSTATUS, ids);
    27172721        }
    27182722        if (FrameFlags & FCF_SHELLPOSITION)
Note: See TracChangeset for help on using the changeset viewer.