output: Remove write-only "col_group' member from struct tab_table.
[pspp-builds.git] / src / language / stats / t-test.q
index 500e18ffb422dfa1b5f22076f5b21160d86dbc37..fad93b4f7e0ca1613240d13263b0f492dcf2aa83 100644 (file)
@@ -477,7 +477,7 @@ ssbox_base_init (struct ssbox *this, int cols, int rows)
   this->finalize = ssbox_base_finalize;
   this->t = tab_create (cols, rows, 0);
 
-  tab_columns (this->t, SOM_COL_DOWN, 1);
+  tab_columns (this->t, SOM_COL_DOWN);
   tab_headers (this->t, 0, 0, 1, 0);
   tab_box (this->t, TAL_2, TAL_2, TAL_0, TAL_1, 0, 0, cols - 1, rows - 1);
   tab_hline (this->t, TAL_2, 0, cols- 1, 1);
@@ -1093,7 +1093,7 @@ pscbox (struct t_test_proc *proc)
 
   table = tab_create (cols, rows, 0);
 
-  tab_columns (table, SOM_COL_DOWN, 1);
+  tab_columns (table, SOM_COL_DOWN);
   tab_headers (table, 0, 0, 1, 0);
   tab_box (table, TAL_2, TAL_2, TAL_0, TAL_1, 0, 0, cols - 1, rows - 1);
   tab_hline (table, TAL_2, 0, cols - 1, 1);