oops, forgot something
Bill Gribble
grib@gnumatic.com
Tue, 13 Feb 2001 17:35:22 -0600
Forgot to include this patch in the one I just sent.
b.g.
Index: dialog-style-sheet.c
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/gnome/dialog-style-sheet.c,v
retrieving revision 1.2
diff -r1.2 dialog-style-sheet.c
208a209
> return TRUE;
215d215
< GtkWidget * close_button=NULL;
227c227
< gnc_style_sheet_dialog_select_cb, ss);
---
> GTK_SIGNAL_FUNC(gnc_style_sheet_dialog_select_cb), ss);
229c229
< gnc_style_sheet_new_cb, ss);
---
> GTK_SIGNAL_FUNC(gnc_style_sheet_new_cb), ss);
231c231
< gnc_style_sheet_delete_cb, ss);
---
> GTK_SIGNAL_FUNC(gnc_style_sheet_delete_cb), ss);
233c233
< gnc_style_sheet_dialog_close_cb, ss);
---
> GTK_SIGNAL_FUNC(gnc_style_sheet_dialog_close_cb), ss);
242,250d241
<
<
< static void
< gnc_style_sheet_dialog_destroy(StyleSheetDialog * ssd) {
< gtk_widget_destroy(ssd->toplevel);
< g_free(ssd);
< }
<
<