Changeset 1717 for trunk/dll/avv.c


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

File:
1 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,
Note: See TracChangeset for help on using the changeset viewer.