
Mael wrote:
- toolbox.c
toolbox.c: In function `sp_toolbox_file_create': toolbox.c:342: `action' undeclared (first use in this function) -> Someone has removed the declaration SPAction *action;
Oops. That was me pruing dead variables.
I've fixed it with a happier #ifdef move. Just in case someone needs it, this is what I checked into CVS:
Index: src/toolbox.c =================================================================== RCS file: /cvsroot/inkscape/inkscape/src/toolbox.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- src/toolbox.c 18 Nov 2003 14:45:45 -0000 1.12 +++ src/toolbox.c 18 Nov 2003 16:28:42 -0000 1.13 @@ -317,9 +317,18 @@ static GtkWidget * sp_toolbox_file_create (void) { +#ifdef WIN32 +#define PDIRECT +#endif +#ifdef WITH_GNOME_PRINT +#define PDIRECT +#endif GtkWidget *t, *tb, *b; GtkTooltips *tt; SPRepr *repr; +#ifdef PDIRECT + SPAction *action; +#endif
t = gtk_table_new (2, 4, TRUE); gtk_widget_show (t); @@ -331,12 +340,7 @@ sp_toolbox_button_new_from_verb (t, 4, SP_BUTTON_TYPE_NORMAL, SP_VERB_FILE_OPEN, tt); sp_toolbox_button_new_from_verb (t, 1, SP_BUTTON_TYPE_NORMAL, SP_VERB_FILE_SAVE, tt); sp_toolbox_button_new_from_verb (t, 5, SP_BUTTON_TYPE_NORMAL, SP_VERB_FILE_SAVE_AS, tt); -#ifdef WIN32 -#define PDIRECT -#endif -#ifdef WITH_GNOME_PRINT -#define PDIRECT -#endif + #ifdef PDIRECT b = sp_button_menu_new (24, SP_BUTTON_TYPE_NORMAL, 2, tt); gtk_widget_show (b);