home *** CD-ROM | disk | FTP | other *** search
- *** ldfile.c Wed May 12 10:22:18 1993
- --- ldfile01.c Wed May 12 10:37:49 1993
- ***************
- *** 31,37 ****
-
- #include "ldfile.h"
-
- ! XtCallbackProc fileProc;
-
- void FileNamePopUp();
- void okFileNameCallback();
- --- 31,37 ----
-
- #include "ldfile.h"
-
- ! void (*fileProc)();
-
- void FileNamePopUp();
- void okFileNameCallback();
- ***************
- *** 178,184 ****
- Dimension bw_width, pw_width;
- int n;
-
- ! fileProc = (XtCallbackProc) proc;
-
- popup = XtCreatePopupShell("ldfile_popup",
- transientShellWidgetClass, theParent, NULL, 0);
- --- 178,184 ----
- Dimension bw_width, pw_width;
- int n;
-
- ! fileProc = proc;
-
- popup = XtCreatePopupShell("ldfile_popup",
- transientShellWidgetClass, theParent, NULL, 0);
- ***************
- *** 227,233 ****
- int n;
- XmString compoundString;
- Arg args[1];
- !
-
- n=0;
- XtSetArg(args[n], XmNtextString, &compoundString);n++;
- --- 227,233 ----
- int n;
- XmString compoundString;
- Arg args[1];
- ! XtCallbackProc callbackFunct;
-
- n=0;
- XtSetArg(args[n], XmNtextString, &compoundString);n++;
-