X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fcharts%2Fscatterplot.h;h=a78227dabc622badc9c8c765a328fffb63652d92;hb=6127c33ca07fc592fd9624638f28248aaa9e317e;hp=b752b7471f788003fdabf6c7512656c0565949db;hpb=961577539cc6e149b30341f673c09cb3cd554272;p=pspp diff --git a/src/output/charts/scatterplot.h b/src/output/charts/scatterplot.h index b752b7471f..a78227dabc 100644 --- a/src/output/charts/scatterplot.h +++ b/src/output/charts/scatterplot.h @@ -32,9 +32,9 @@ struct scatterplot_chart { struct chart_item chart_item; struct casereader *data; - const struct variable *byvar; - const char *xlabel; - const char *ylabel; + struct variable *byvar; + char *xlabel; + char *ylabel; double y_min, y_max; double x_min, x_max; @@ -45,7 +45,7 @@ struct scatterplot_chart }; struct scatterplot_chart * -scatterplot_create (const struct casereader *, +scatterplot_create (struct casereader *, const char *xlabel, const char *ylabel, const struct variable *,