Changeset 1717 for trunk/dll


Ignore:
Timestamp:
Feb 16, 2014, 12:06:47 AM (12 years ago)
Author:
Gregg Young
Message:

Assure the title is blank on the execute dialog call with the "see" button Ticket 504

Location:
trunk/dll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/avv.c

    r1616 r1717  
    3131  17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *.
    3232  13 Aug 11 GKY Change to Doxygen comment format
     33  15 Feb 14 GKY Assure the title is blank on the execute dialog call with the "see" button
    3334
    3435***********************************************************************/
     
    839840            *p = 0;
    840841          {
    841             EXECARGS ex;
    842 
     842            EXECARGS ex;
     843
     844            memset(&ex, 0, sizeof(EXECARGS));
    843845            ex.flags = SEPARATEKEEP | WINDOWED | MAXIMIZED;
    844846            ex.commandline = tempargs;
    845847            *ex.path = 0;
    846             *ex.environment = 0;
     848            *ex.environment = 0;
     849            *ex.title = 0;
    847850            if (WinDlgBox(HWND_DESKTOP,
    848851                          hwnd,
  • trunk/dll/extract.c

    r1694 r1717  
    2222  11 Aug 13 GKY Fix directory create failure on extract to directory based on archive name
    2323                if the name needed quoting.
     24  15 Feb 14 GKY Assure the title is blank on the execute dialog call with the "see" button
    2425
    2526***********************************************************************/
     
    512513          ex.flags = WINDOWED | SEPARATEKEEP | MAXIMIZED;
    513514          *ex.path = 0;
    514           *ex.environment = 0;
     515          *ex.environment = 0;
     516          *ex.title = 0;
    515517          if (WinDlgBox(HWND_DESKTOP,
    516518                        hwnd,
Note: See TracChangeset for help on using the changeset viewer.