Changeset 89


Ignore:
Timestamp:
Oct 1, 2023, 4:23:48 AM (23 months ago)
Author:
erdmann
Message:

fix all of the remaining errors emerging from the "gcc" compile process in "mm-progs"

Location:
branches/v2.9_Lars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/v2.9_Lars/classes/mm-progs/master_volume/volume.c

    r74 r89  
    439439            PSWP pswpTB=NULLHANDLE;
    440440            PSWP pswp=(PSWP)mp1;
    441             int y, cy;
     441            int y;
    442442
    443443            for (a = 0; a < countSwp; a++)
     
    448448                    pswpTB=&pswp[a];
    449449                    y=pswp[a].y;
    450                     cy=pswp[a].cy;
    451450                    //    DosBeep(500,600);
    452451                    break;
  • branches/v2.9_Lars/classes/mm-progs/mmfind/mmfind.c

    r74 r89  
    10551055                    {
    10561056                      HOBJECT hObject;
    1057                       char *chr;
    10581057                      if((hObject=WinQueryObject(fd.szFullFile))!=NULLHANDLE)
    10591058                        WinOpenObject(hObject, ID_MENU_PLAYER /* OPEN_DEFAULT */, TRUE);
    10601059#if 0
    10611060                      /* Open folder */
    1062                       if((chr=strrchr(fd.szFullFile, '\\'))!=NULLHANDLE) {
    1063                         *chr=0;
     1061                      if(strrchr(fd.szFullFile, '\\')!=NULLHANDLE) {
    10641062                        if((hObject=WinQueryObject(fd.szFullFile))!=NULLHANDLE)
    10651063                          WinOpenObject(hObject, OPEN_CONTENTS, TRUE);
  • branches/v2.9_Lars/common_functions/message.c

    r74 r89  
    1010{
    1111  WinMessageBox(HWND_DESKTOP,0,
    12                 (PSZ)"The resource DLL which contains all the dialogs, graphics and messages cannot be loaded. \
    13                 Please check your installation.",
    14                 (PSZ)"Problem with class installation",12345,
     12                "The resource DLL which contains all the dialogs, graphics and messages cannot be loaded. \
     13                \nPlease check your installation.",
     14                "Problem with class installation",12345,
    1515                MB_OK|MB_MOVEABLE|MB_ERROR);
    1616}
     
    258258{
    259259  WinMessageBox(HWND_DESKTOP,0,
    260                 (PSZ)"This helper shouldn't be started by hand. It is called by the multimedia classes. \
    261                 If you didn't launch the helper by hand you may have found a bug. Please contact the author.",
    262                 (PSZ)"Problem with multimedia classes",12345,
     260                "This helper shouldn't be started by hand. \
     261                \nIt is called by the multimedia classes. \
     262                \nIf you didn't launch the helper by hand you may have found a bug. \
     263                \nPlease contact the author.",
     264                "Problem with multimedia classes",12345,
    263265                MB_OK|MB_MOVEABLE|MB_ERROR);
    264266
Note: See TracChangeset for help on using the changeset viewer.