home *** CD-ROM | disk | FTP | other *** search
- Xkal - Patch01 - George Ferguson (ferguson@cs.rochester.edu)
-
- This patch fixes the following bug(s):
- Imakefile: - use LOCAL_LIBRARIES rather than EXTRA_LIBRARIES
- day.c: - args[0] passed to XtSetValues() rather than args
-
- *** Imakefile.old Thu Nov 15 11:47:52 1990
- --- Imakefile Thu Nov 15 11:48:15 1990
- ***************
- *** 20,26 ****
- /**/#
- EZMENU_DIR = /u/ferguson/src/x/EzMenu
- INCLUDES += -I$(EZMENU_DIR)
- ! EXTRA_LIBRARIES += -L$(EZMENU_DIR) -lezMenu$(TARGET_MACH)
-
- /**/#
- /**/# where is the app-defaults to C converter?
- --- 20,26 ----
- /**/#
- EZMENU_DIR = /u/ferguson/src/x/EzMenu
- INCLUDES += -I$(EZMENU_DIR)
- ! LOCAL_LIBRARIES += -L$(EZMENU_DIR) -lezMenu$(TARGET_MACH)
-
- /**/#
- /**/# where is the app-defaults to C converter?
- ***************
- *** 31,37 ****
- /**/# Nothing to change below here (except maybe CDEBUGFLAGS).
- /**/#
- DEPLIBS = XawClientDepLibs
- ! LOCAL_LIBRARIES = XawClientLibs
- CDEBUGFLAGS = -g
-
- SRCS = xkal.c month.c day.c schedule.c db.c util.c date-strings.c
- --- 31,37 ----
- /**/# Nothing to change below here (except maybe CDEBUGFLAGS).
- /**/#
- DEPLIBS = XawClientDepLibs
- ! LOCAL_LIBRARIES += XawClientLibs
- CDEBUGFLAGS = -g
-
- SRCS = xkal.c month.c day.c schedule.c db.c util.c date-strings.c
- *** day.c.old Thu Nov 15 11:30:12 1990
- --- day.c Thu Nov 15 11:29:49 1990
- ***************
- *** 1,7 ****
- /*
- * day.c : The day windows
- *
- ! * $Id: day.c,v 1.1 90/11/07 11:22:38 ferguson Exp $
- */
- #include <X11/Intrinsic.h>
- #include <X11/Shell.h>
- --- 1,7 ----
- /*
- * day.c : The day windows
- *
- ! * $Id: day.c,v 1.2 90/11/15 11:29:30 ferguson Exp $
- */
- #include <X11/Intrinsic.h>
- #include <X11/Shell.h>
- ***************
- *** 166,178 ****
- for (i=0; i < 22; i++) {
- if ((s=lookupAppoint(i,day,month,year)) != NULL) {
- XtSetArg(args[0],XtNstring,s);
- ! XtSetValues(d->items[i]->text,args[0],ONE);
- } else if ((s=lookupSchedule(i,day,month,year)) != NULL) {
- XtSetArg(args[0],XtNstring,s);
- ! XtSetValues(d->items[i]->text,args[0],ONE);
- } else {
- XtSetArg(args[0],XtNstring,"");
- ! XtSetValues(d->items[i]->text,args[0],ONE);
- }
- }
- d->day = day;
- --- 166,178 ----
- for (i=0; i < 22; i++) {
- if ((s=lookupAppoint(i,day,month,year)) != NULL) {
- XtSetArg(args[0],XtNstring,s);
- ! XtSetValues(d->items[i]->text,args,ONE);
- } else if ((s=lookupSchedule(i,day,month,year)) != NULL) {
- XtSetArg(args[0],XtNstring,s);
- ! XtSetValues(d->items[i]->text,args,ONE);
- } else {
- XtSetArg(args[0],XtNstring,"");
- ! XtSetValues(d->items[i]->text,args,ONE);
- }
- }
- d->day = day;
-