1
0
Fork 0
mirror of https://github.com/subsurface/subsurface.git synced 2025-02-19 22:16:15 +00:00

Fix up some minor whitespace issues

Dirk clearly isn't as anal as I am about pretty whitespace.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Linus Torvalds 2011-09-22 08:21:32 -07:00
parent 2df6149080
commit 68b666f50a

View file

@ -1,7 +1,7 @@
/* divelist.c */ /* divelist.c */
/* this creates the UI for the dive list - /* this creates the UI for the dive list -
* controlled through the following interfaces: * controlled through the following interfaces:
* *
* void flush_divelist(struct dive *dive) * void flush_divelist(struct dive *dive)
* GtkWidget dive_list_create(void) * GtkWidget dive_list_create(void)
* void dive_list_update_dives(void) * void dive_list_update_dives(void)
@ -445,7 +445,7 @@ static GtkTreeViewColumn *divelist_column(struct DiveList *dl, int index, const
gtk_cell_renderer_set_alignment(GTK_CELL_RENDERER(renderer), 1.0, 0.5); gtk_cell_renderer_set_alignment(GTK_CELL_RENDERER(renderer), 1.0, 0.5);
} }
gtk_tree_view_column_set_expand(col,expand); gtk_tree_view_column_set_expand(col,expand);
if (expand) if (expand)
gtk_tree_view_column_set_min_width(col,50); gtk_tree_view_column_set_min_width(col,50);
gtk_tree_view_append_column(GTK_TREE_VIEW(dl->tree_view), col); gtk_tree_view_append_column(GTK_TREE_VIEW(dl->tree_view), col);
return col; return col;