Changeset 888 for trunk/dll/newview.c


Ignore:
Timestamp:
Dec 22, 2007, 11:02:11 PM (18 years ago)
Author:
Gregg Young
Message:

runemf2 now quotes executable strings if needed (Ticket 180); it also reports where it was called from on errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/newview.c

    r886 r888  
    2626  14 Sep 07 SHL Another attempt to correct the fast viewer text load failure
    2727  10 Oct 07 SHL Correct ReLineThread typo
     28  17 Dec 07 GKY Make WPURLDEFAULTSETTINGS the fall back for ftp/httprun
    2829
    2930***********************************************************************/
     
    22892290                       if (*urld->url)
    22902291                         runemf2(SEPARATE | WINDOWED,
    2291                                hwnd, httprund, NULL, "%s %s", httprun, urld->url);
     2292                                 hwnd, pszSrcFile, __LINE__,
     2293                                 httprund, NULL, "%s %s", httprun, urld->url);
    22922294                free(urld);
    22932295                goto NoAdd;
     
    22952297                if (*urld->url)
    22962298                  runemf2(SEPARATE | WINDOWED,
    2297                           hwnd, ftprund, NULL, "%s %s", ftprun, urld->url);
     2299                          hwnd, pszSrcFile, __LINE__,
     2300                          ftprund, NULL, "%s %s", ftprun, urld->url);
    22982301                free(urld);
    22992302                goto NoAdd;
     
    31173120        dummy[0] = ad->filename;
    31183121        dummy[1] = NULL;
    3119         ExecOnList(hwnd, editor, WINDOWED | SEPARATE, NULL, dummy, NULL);
     3122        ExecOnList(hwnd, editor, WINDOWED | SEPARATE, NULL, dummy, NULL,
     3123                   pszSrcFile, __LINE__);
    31203124      }
    31213125      else
Note: See TracChangeset for help on using the changeset viewer.