diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-15 06:04:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-15 06:04:21 +0800 |
commit | 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (patch) | |
tree | 2e1e96f33404781354c422a7e9beaf458ebeb655 /widgets/table/e-table-example-2.c | |
parent | 7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff) | |
download | gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.zst gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.zip |
** Remove trailing whitespace from source code.
2007-11-14 Matthew Barnes <mbarnes@redhat.com>
** Remove trailing whitespace from source code.
svn path=/trunk/; revision=34537
Diffstat (limited to 'widgets/table/e-table-example-2.c')
-rw-r--r-- | widgets/table/e-table-example-2.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/widgets/table/e-table-example-2.c b/widgets/table/e-table-example-2.c index 17126e7572..328be5fcde 100644 --- a/widgets/table/e-table-example-2.c +++ b/widgets/table/e-table-example-2.c @@ -1,5 +1,5 @@ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* +/* * e-table-example-2.c * Copyright 2000, 2001, Ximian, Inc. * @@ -165,7 +165,7 @@ my_value_at (ETableModel *etc, int col, int row, void *data) static void my_set_value_at (ETableModel *etc, int col, int row, const void *val, void *data) { - if (col == COLOR_COLUMN){ + if (col == COLOR_COLUMN){ } else if (col == IMPORTANCE_COLUMN){ importance_data[row] = (gboolean) val; } else { @@ -280,14 +280,14 @@ create_table () First we create the header. */ e_table_header = e_table_header_new (); - + /* Next we have to build renderers for all of the columns. Since all our columns are text columns, we can simply use the same renderer over and over again. If we had different types of columns, we could use a different renderer for each column. */ cell_left_just = e_cell_text_new (e_table_model, NULL, GTK_JUSTIFY_LEFT); - + /* Next we create a column object for each view column and add them to the header. We don't create a column object for the importance column since it will not be shown. */ @@ -300,7 +300,7 @@ create_table () /* Add it to the header. */ e_table_header_add_column (e_table_header, ecol, i); } - + /* Next we add a special column for the check box. */ cell_checkbox = e_cell_checkbox_new (); @@ -343,7 +343,7 @@ main (int argc, char *argv []) gtk_widget_push_colormap (gdk_rgb_get_cmap ()); create_table (); - + gtk_main (); e_cursors_shutdown (); |