X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpage-intro.c;h=6db2bee688ffe6fe2b73461a2682ef8e674ae991;hb=03a7b96a587a58bda342b4eb5ce5f935880ba2b7;hp=e0d51f537c5066c902ee2d9c89dd5ef6993dc1b8;hpb=920ccda5e43b81b2118caf37784f6edaa568e246;p=pspp diff --git a/src/ui/gui/page-intro.c b/src/ui/gui/page-intro.c index e0d51f537c..6db2bee688 100644 --- a/src/ui/gui/page-intro.c +++ b/src/ui/gui/page-intro.c @@ -22,7 +22,6 @@ #include #include -#include #include #include #include @@ -38,7 +37,6 @@ #include "libpspp/i18n.h" #include "libpspp/line-reader.h" #include "libpspp/message.h" -#include "ui/gui/checkbox-treeview.h" #include "ui/gui/dialog-common.h" #include "ui/gui/executor.h" #include "ui/gui/helper.h" @@ -48,11 +46,9 @@ #include "ui/gui/psppire-encoding-selector.h" #include "ui/gui/psppire-empty-list-store.h" #include "ui/gui/psppire-var-sheet.h" -#include "ui/gui/psppire-var-store.h" #include "ui/gui/psppire-scanf.h" #include "ui/syntax-gen.h" -#include "gl/error.h" #include "gl/intprops.h" #include "gl/xalloc.h" @@ -97,17 +93,17 @@ intro_page_create (struct import_assistant *ia) table = get_widget_assert (builder, "button-table"); - gtk_table_attach_defaults (GTK_TABLE (table), hbox_n_cases, - 1, 2, - 1, 2); + gtk_grid_attach (GTK_GRID (table), hbox_n_cases, + 1, 1, + 1, 1); p->percent_spin = gtk_spin_button_new_with_range (0, 100, 10); hbox_percent = psppire_scanf_new (_("Only the first %3d %% of file (approximately)"), &p->percent_spin); - gtk_table_attach_defaults (GTK_TABLE (table), hbox_percent, - 1, 2, - 2, 3); + gtk_grid_attach (GTK_GRID (table), hbox_percent, + 1, 2, + 1, 1); p->page = add_page_to_assistant (ia, get_widget_assert (builder, "Intro"), GTK_ASSISTANT_PAGE_INTRO); @@ -134,16 +130,16 @@ intro_page_create (struct import_assistant *ia) "commas, or other delimiters.\n\n")); if (ia->file.total_is_exact) ds_put_format ( - &s, ngettext ("The selected file contains %zu line of text. ", - "The selected file contains %zu lines of text. ", + &s, ngettext ("The selected file contains %'zu line of text. ", + "The selected file contains %'zu lines of text. ", ia->file.line_cnt), ia->file.line_cnt); else if (ia->file.total_lines > 0) { ds_put_format ( &s, ngettext ( - "The selected file contains approximately %lu line of text. ", - "The selected file contains approximately %lu lines of text. ", + "The selected file contains approximately %'lu line of text. ", + "The selected file contains approximately %'lu lines of text. ", ia->file.total_lines), ia->file.total_lines); ds_put_format ( @@ -190,11 +186,11 @@ void intro_append_syntax (const struct intro_page *p, struct string *s) { if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (p->n_cases_button))) - ds_put_format (s, " /IMPORTCASES=FIRST %d\n", + ds_put_format (s, " /IMPORTCASE=FIRST %d\n", gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (p->n_cases_spin))); else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (p->percent_button))) - ds_put_format (s, " /IMPORTCASES=PERCENT %d\n", + ds_put_format (s, " /IMPORTCASE=PERCENT %d\n", gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (p->percent_spin))); else - ds_put_cstr (s, " /IMPORTCASES=ALL\n"); + ds_put_cstr (s, " /IMPORTCASE=ALL\n"); }