summaryrefslogtreecommitdiff
path: root/sysutils/xloadface/files/patch-02
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/xloadface/files/patch-02')
-rw-r--r--sysutils/xloadface/files/patch-0240
1 files changed, 40 insertions, 0 deletions
diff --git a/sysutils/xloadface/files/patch-02 b/sysutils/xloadface/files/patch-02
new file mode 100644
index 000000000000..65124a746fb8
--- /dev/null
+++ b/sysutils/xloadface/files/patch-02
@@ -0,0 +1,40 @@
+--- ArrangeBox.c.orig Tue Apr 2 06:44:19 1991
++++ ArrangeBox.c Fri Dec 6 14:27:43 1996
+@@ -69,7 +69,7 @@
+ },
+ {
+ /* box_class fields */
+- /* empty */ NULL,
++ /* empty */ 0,
+ },
+ {
+ /* ArrangeBox class fields */
+@@ -194,8 +194,8 @@
+ w->core.parent->core.border_width);
+ XtResizeWindow(w->core.parent);
+ }
+- XtResizeWidget(w,width,height,w->core.border_width);
+- XtResizeWindow(w);
++ XtResizeWidget((Widget)w,width,height,w->core.border_width);
++ XtResizeWindow((Widget)w);
+ }
+ }
+
+@@ -203,15 +203,13 @@
+ * Insert child method
+ */
+ static void
+-InsertChild(w,arg,num_args)
++InsertChild(w)
+ Widget w;
+-ArgList arg;
+-Cardinal *num_args;
+ {
+ ArrangeBoxWidget ab;
+
+ ab = (ArrangeBoxWidget)w->core.parent;
+- (*((CompositeClassRec*)XtSuperclass(ab))->composite_class.insert_child)(w,arg,num_args);
++ (*((CompositeClassRec*)XtSuperclass(ab))->composite_class.insert_child)(w);
+ RearrangeSize(ab);
+ }
+