home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume37 / magiccube / patch01 / patch2 < prev    next >
Text File  |  1993-05-17  |  1KB  |  54 lines

  1. *** ldfile.c    Wed May 12 10:22:18 1993
  2. --- ldfile01.c    Wed May 12 10:37:49 1993
  3. ***************
  4. *** 31,37 ****
  5.   
  6.   #include "ldfile.h"
  7.   
  8. ! XtCallbackProc fileProc;
  9.   
  10.   void FileNamePopUp();
  11.   void okFileNameCallback();
  12. --- 31,37 ----
  13.   
  14.   #include "ldfile.h"
  15.   
  16. ! void (*fileProc)();
  17.   
  18.   void FileNamePopUp();
  19.   void okFileNameCallback();
  20. ***************
  21. *** 178,184 ****
  22.     Dimension bw_width, pw_width;
  23.     int n;
  24.     
  25. !   fileProc = (XtCallbackProc) proc;
  26.     
  27.     popup = XtCreatePopupShell("ldfile_popup",
  28.                    transientShellWidgetClass, theParent, NULL, 0);
  29. --- 178,184 ----
  30.     Dimension bw_width, pw_width;
  31.     int n;
  32.     
  33. !   fileProc = proc;
  34.     
  35.     popup = XtCreatePopupShell("ldfile_popup",
  36.                    transientShellWidgetClass, theParent, NULL, 0);
  37. ***************
  38. *** 227,233 ****
  39.     int n;
  40.     XmString compoundString;
  41.     Arg args[1];
  42. !   
  43.     
  44.     n=0;
  45.     XtSetArg(args[n], XmNtextString, &compoundString);n++;
  46. --- 227,233 ----
  47.     int n;
  48.     XmString compoundString;
  49.     Arg args[1];
  50. !   XtCallbackProc callbackFunct;
  51.     
  52.     n=0;
  53.     XtSetArg(args[n], XmNtextString, &compoundString);n++;
  54.