1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/sysutils/xloadface/files/patch-03
David E. O'Brien 24e3021aa9 Author fixed a path bug.
Broke up huge patchfile by filename.
1996-12-06 23:02:15 +00:00

30 lines
835 B
Plaintext

--- LabeledPicture.c.orig Thu Apr 4 05:36:23 1991
+++ LabeledPicture.c Fri Dec 6 14:27:44 1996
@@ -153,7 +153,7 @@
Window rootwin;
lp->label_width = XTextWidth(lp->font,lp->label,strlen(lp->label));
- if (lp->pixmap != NULL && lp->pixmap != AiNullPixmap) {
+ if (lp->pixmap != 0 && lp->pixmap != AiNullPixmap) {
XGetGeometry(XtDisplay(w),lp->pixmap,
&rootwin,
&x,
@@ -355,7 +355,7 @@
{
UnSelectIt(w);
if (w->labeled_picture.sensitive) {
- XtCallCallbacks(w, AiNcallback, (caddr_t)event);
+ XtCallCallbacks((Widget)w, AiNcallback, (caddr_t)event);
}
}
@@ -391,7 +391,7 @@
AdjustSize(w,True);
if (width != w->core.width || height != w->core.height) {
- XtResizeWidget(w,
+ XtResizeWidget((Widget)w,
w->core.width,
w->core.height,
w->core.border_width);