output: Get rid of unused members of struct som_table_class.
authorBen Pfaff <blp@gnu.org>
Wed, 10 Jun 2009 02:48:50 +0000 (19:48 -0700)
committerBen Pfaff <blp@gnu.org>
Fri, 12 Jun 2009 04:55:56 +0000 (21:55 -0700)
I planned to use these at one point, but no longer do.

src/output/manager.h
src/output/table.c

index 58d0c12d48594862a7e838b0f8f3ee52b50fa605..7ebe541b248008b779496ffebbcf17a092e57b59 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1997-9, 2000, 2009 Free Software Foundation, Inc.
 
    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
@@ -82,20 +82,14 @@ struct som_table_class
     /* Query columns and rows. */
     void (*count) (int *n_columns, int *n_rows);
     void (*area) (int *horiz, int *vert);
-    void (*width) (int *columns);
-    void (*height) (int *rows);
     void (*columns) (int *style);
-    int (*breakable) (int row);                                /* ? */
     void (*headers) (int *l, int *r, int *t, int *b);
-    void (*join) (int *(column[2]), int *(row[2]));    /* ? */
     void (*cumulate) (int cumtype, int start, int *end, int max, int *actual);
     void (*flags) (unsigned *);
     bool (*fits_width) (int width);
     bool (*fits_length) (int length);
 
     /* Set columns and rows. */
-    void (*set_width) (int column, int width);         /* ? */
-    void (*set_height) (int row, int height);          /* ? */
     void (*set_headers) (int l, int r, int t, int b);
 
     /* Rendering. */
index 9e925a44df12300bb35446ae700bef29ace5083c..434db0bb14d93d4f12d491f656336df0e944fb2e 100644 (file)
@@ -1287,19 +1287,13 @@ const struct som_table_class tab_table_class =
 
     tabi_count,
     tabi_area,
-    NULL,
-    NULL,
     tabi_columns,
-    NULL,
     tabi_headers,
-    NULL,
     tabi_cumulate,
     tabi_flags,
     tabi_fits_width,
     tabi_fits_length,
 
-    NULL,
-    NULL,
     tabi_set_headers,
 
     tabi_title,