X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fchart-item.c;h=3b3761372e185af855992f5c5d3a3b162e497722;hb=a09789d93e0160b14f1b06ad91080a249c252253;hp=f4b19a2f275c897abc36919c68cc3be725a77143;hpb=a63a6cac40eeffdda6cc14e16c165f880dc79823;p=pspp diff --git a/src/output/chart-item.c b/src/output/chart-item.c index f4b19a2f27..3b3761372e 100644 --- a/src/output/chart-item.c +++ b/src/output/chart-item.c @@ -29,6 +29,9 @@ #include "gl/xalloc.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + /* Initializes ITEM as a chart item of the specified CLASS. The new chart item initially has the specified TITLE, which may be NULL if no title is yet available. The caller retains ownership of TITLE. @@ -40,9 +43,11 @@ void chart_item_init (struct chart_item *item, const struct chart_item_class *class, const char *title) { - output_item_init (&item->output_item, &chart_item_class); - item->class = class; - item->title = title != NULL ? xstrdup (title) : NULL; + *item = (struct chart_item) { + .output_item = OUTPUT_ITEM_INITIALIZER (&chart_item_class), + .class = class, + .title = title ? xstrdup (title) : NULL + }; } /* Returns ITEM's title, which is a null pointer if no title has been set. */ @@ -73,6 +78,13 @@ chart_item_submit (struct chart_item *item) output_submit (&item->output_item); } +static const char * +chart_item_get_label (const struct output_item *output_item) +{ + const struct chart_item *item = to_chart_item (output_item); + return item->title ? item->title : _("Chart"); +} + static void chart_item_destroy (struct output_item *output_item) { @@ -84,6 +96,6 @@ chart_item_destroy (struct output_item *output_item) const struct output_item_class chart_item_class = { - "chart", + chart_item_get_label, chart_item_destroy, };