pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/tab.h


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/tab.h
Date: Tue, 01 Mar 2005 03:16:38 -0500

Index: pspp/src/tab.h
diff -u pspp/src/tab.h:1.2 pspp/src/tab.h:1.3
--- pspp/src/tab.h:1.2  Thu Feb 12 08:19:50 2004
+++ pspp/src/tab.h      Tue Mar  1 08:16:16 2005
@@ -64,7 +64,7 @@
     int x1, y1;
     int x2, y2;
     int hit;
-    struct len_string contents;
+    struct fixed_string contents;
   };
 
 struct outp_driver;
@@ -79,12 +79,12 @@
     /* Contents. */
     int col_style;             /* Columns: One of TAB_COL_*. */
     int col_group;             /* Number of rows per column group. */
-    struct len_string title;   /* Table title. */
+    struct fixed_string title; /* Table title. */
     unsigned flags;            /* SOMF_*. */
     int nc, nr;                        /* Number of columns, rows. */
     int cf;                    /* Column factor for indexing purposes. */
     int l, r, t, b;            /* Number of header rows on each side. */
-    struct len_string *cc;     /* Cell contents; len_string *[nr][nc]. */
+    struct fixed_string *cc;   /* Cell contents; fixed_string *[nr][nc]. */
     unsigned char *ct;         /* Cell types; unsigned char[nr][nc]. */
     unsigned char *rh;         /* Horiz rules; unsigned char[nr+1][nc]. */
     unsigned char *trh;                /* Types of horiz rules; [nr+1]. */
@@ -177,7 +177,7 @@
 /* Cell low-level access. */
 #define tab_alloc(TABLE, AMT) pool_alloc ((TABLE)->container, (AMT))
 void tab_raw (struct tab_table *, int c, int r, unsigned opt,
-             struct len_string *);
+             struct fixed_string *);
 
 /* Editing. */
 void tab_offset (struct tab_table *, int col, int row);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]