X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-import-assistant.c;h=3d7ba0468a6312a748e0c9fcacec9ee9a16a58ba;hb=1b5c2d8fe129a5f8db76c42250a9c199deccb773;hp=ad32d1f5d3c5c80b1ba305293b2315314b26d642;hpb=63ae14f7f555727026138e1668e6cf91a9046bc0;p=pspp diff --git a/src/ui/gui/psppire-import-assistant.c b/src/ui/gui/psppire-import-assistant.c index ad32d1f5d3..3d7ba0468a 100644 --- a/src/ui/gui/psppire-import-assistant.c +++ b/src/ui/gui/psppire-import-assistant.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2015 Free Software Foundation + Copyright (C) 2015, 2016 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2233,13 +2233,11 @@ static void intro_append_syntax (const PsppireImportAssistant *ia, struct string *s) { if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (ia->n_cases_button))) - ds_put_format (s, " /IMPORTCASE=FIRST %d\n", + ds_put_format (s, "N OF CASES %d.\n", gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (ia->n_cases_spin))); else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (ia->percent_button))) - ds_put_format (s, " /IMPORTCASE=PERCENT %d\n", - gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (ia->percent_spin))); - else - ds_put_cstr (s, " /IMPORTCASE=ALL\n"); + ds_put_format (s, "SAMPLE %.4g.\n", + gtk_spin_button_get_value (GTK_SPIN_BUTTON (ia->percent_spin)) / 100.0); } @@ -2386,9 +2384,6 @@ psppire_import_assistant_generate_syntax (PsppireImportAssistant *ia) if (ia->encoding && strcmp (ia->encoding, "Auto")) syntax_gen_pspp (&s, " /ENCODING=%sq\n", ia->encoding); - intro_append_syntax (ia, &s); - - ds_put_cstr (&s, " /ARRANGEMENT=DELIMITED\n" " /DELCASE=LINE\n"); @@ -2398,6 +2393,7 @@ psppire_import_assistant_generate_syntax (PsppireImportAssistant *ia) formats_append_syntax (ia, &s); apply_dict (ia->dict, &s); + intro_append_syntax (ia, &s); } else {