From 0f447caa885d8f0fd8c30d4440556d9b6abb99ea Mon Sep 17 00:00:00 2001 From: John Darrington Date: Wed, 15 Nov 2017 07:33:24 +0100 Subject: [PATCH] Frequencies Piecharts (gui): Emit 'NOMISSING' when appropriate. Fixes bug #52394. --- NEWS | 3 +++ src/ui/gui/psppire-dialog-action-frequencies.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/NEWS b/NEWS index a02b144f4d..e876620021 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,9 @@ Changes from 1.0.1 to 1.1.0: ** The code implementing the sheet rendering has been removed. Instead we use a third party library: spread-sheet-widget. + ** The "NOMISSING" keyword when generating syntax for piecharts in the frequencies + command was omitted. This has been corrected. + Changes from 1.0.0 to 1.0.1: * Bug fixes, including fixes for CVE-2017-12958, CVE-2017-12959, diff --git a/src/ui/gui/psppire-dialog-action-frequencies.c b/src/ui/gui/psppire-dialog-action-frequencies.c index adca915816..c987e5ee90 100644 --- a/src/ui/gui/psppire-dialog-action-frequencies.c +++ b/src/ui/gui/psppire-dialog-action-frequencies.c @@ -454,6 +454,8 @@ generate_syntax (const PsppireDialogAction * a) if (fd->charts_opts_pie_include_missing) ds_put_cstr (&str, " MISSING"); + else + ds_put_cstr (&str, " NOMISSING"); if (fd->charts_opts_use_min) ds_put_c_format (&str, " MIN(%.15g)", fd->charts_opts_min); -- 2.30.2