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