Fix build on Alpha.
Submitted by: beta
This commit is contained in:
parent
ecc5f6b3f2
commit
f661b5735b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=71224
1 changed files with 26 additions and 0 deletions
26
x11-toolkits/gal2/files/patch-gal_e-table_e-table-group.c
Normal file
26
x11-toolkits/gal2/files/patch-gal_e-table_e-table-group.c
Normal file
|
@ -0,0 +1,26 @@
|
|||
--- e-table-group.c.orig Thu Nov 28 13:51:22 2002
|
||||
+++ e-table-group.c Thu Nov 28 22:23:01 2002
|
||||
@@ -22,6 +22,7 @@
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
+#include <stdarg.h>
|
||||
#include <gtk/gtksignal.h>
|
||||
#include <libgnomecanvas/gnome-canvas-rect-ellipse.h>
|
||||
#include "e-table-group.h"
|
||||
@@ -129,13 +130,14 @@
|
||||
ETableHeader *header,
|
||||
ETableModel *model)
|
||||
{
|
||||
+ va_list args;
|
||||
etg->full_header = full_header;
|
||||
gtk_object_ref (GTK_OBJECT(etg->full_header));
|
||||
etg->header = header;
|
||||
gtk_object_ref (GTK_OBJECT(etg->header));
|
||||
etg->model = model;
|
||||
gtk_object_ref (GTK_OBJECT(etg->model));
|
||||
- gnome_canvas_item_construct (GNOME_CANVAS_ITEM (etg), parent, 0, NULL);
|
||||
+ gnome_canvas_item_construct (GNOME_CANVAS_ITEM (etg), parent, 0, args);
|
||||
}
|
||||
|
||||
/**
|
Loading…
Reference in a new issue