? omf-install/Makefile ? omf-install/Makefile.in ? omf-install/gnumeric-C.omf ? samples/test.png ? src/cachegrind.out.20764 ? src/callgrind.out.11561 ? src/callgrind.out.full ? src/callgrind.out.without.layout.cache ? src/line_size= ? src/output.pdf ? src/cut-n-paste-code/goffice/graph/dim_changed ? src/cut-n-paste-code/pcre/Makefile ? src/cut-n-paste-code/pcre/Makefile.in Index: plugins/excel/ms-chart.c =================================================================== RCS file: /cvs/gnome/gnumeric/plugins/excel/ms-chart.c,v retrieving revision 1.163 diff -u -r1.163 ms-chart.c --- plugins/excel/ms-chart.c 17 Nov 2004 04:33:32 -0000 1.163 +++ plugins/excel/ms-chart.c 19 Nov 2004 15:39:43 -0000 @@ -1406,10 +1406,7 @@ XLChartReadState *s, BiffQuery *q) { g_return_val_if_fail (s->plot == NULL, TRUE); - s->plot = gog_plot_new_by_name ("GogRadarPlot"); - g_object_set (G_OBJECT (s->plot), - "area", TRUE, - NULL); + s->plot = gog_plot_new_by_name ("GogRadarAreaPlot"); return FALSE; } @@ -3163,12 +3160,9 @@ if (fabs (default_separation) > .005) chart_write_dummy_style (s, default_separation, FALSE, FALSE); } else if (0 == strcmp (type, "GogRadarPlot")) { - gboolean area; - g_object_get (G_OBJECT (plot), "area", &area, NULL); - /* TODO : flags : chart contains radar axis labels */ - ms_biff_put_2byte (s->bp, - area ? BIFF_CHART_radararea : BIFF_CHART_radar, - flags); + ms_biff_put_2byte (s->bp, BIFF_CHART_radar, flags); + } else if (0 == strcmp (type, "GogRadarAreaPlot")) { + ms_biff_put_2byte (s->bp, BIFF_CHART_radararea, flags); } else if (0 == strcmp (type, "GogBubblePlot") || 0 == strcmp (type, "GogXYPlot")) { if (s->bp->version >= MS_BIFF_V8) {