Fixed some indenting.

svn path=/trunk/; revision=31100
This commit is contained in:
Stig Bjørlykke 2009-11-27 18:25:14 +00:00
parent be49cd13f9
commit 12ff128038
1 changed files with 15 additions and 15 deletions

View File

@ -40,21 +40,21 @@ typedef struct {
} col_expr_t; } col_expr_t;
typedef struct _column_info { typedef struct _column_info {
gint num_cols; /* Number of columns */ gint num_cols; /* Number of columns */
gint *col_fmt; /* Format of column */ gint *col_fmt; /* Format of column */
gboolean **fmt_matx; /* Specifies which formats apply to a column */ gboolean **fmt_matx; /* Specifies which formats apply to a column */
gint *col_first; /* First column number with a given format */ gint *col_first; /* First column number with a given format */
gint *col_last; /* Last column number with a given format */ gint *col_last; /* Last column number with a given format */
gchar **col_title; /* Column titles */ gchar **col_title; /* Column titles */
gchar **col_custom_field; /* Custom column field */ gchar **col_custom_field; /* Custom column field */
gint *col_custom_field_id; /* Custom column field id*/ gint *col_custom_field_id; /* Custom column field id*/
struct _dfilter_t **col_custom_dfilter; /* Compiled custom column field */ struct _dfilter_t **col_custom_dfilter; /* Compiled custom column field */
const gchar **col_data; /* Column data */ const gchar **col_data; /* Column data */
gchar **col_buf; /* Buffer into which to copy data for column */ gchar **col_buf; /* Buffer into which to copy data for column */
int *col_fence; /* Stuff in column buffer before this index is immutable */ int *col_fence; /* Stuff in column buffer before this index is immutable */
col_expr_t col_expr; /* Column expressions and values */ col_expr_t col_expr; /* Column expressions and values */
gboolean writable; /* Are we still writing to the columns? */ gboolean writable; /* Are we still writing to the columns? */
gboolean columns_changed; /* Have the columns been changed in the prefs? */ gboolean columns_changed; /* Have the columns been changed in the prefs? */
} column_info; } column_info;
/* /*