Reformat source files gnc-tree-view.c/h

Replace tabs with spaces and changes spaces where appropriate.
This commit is contained in:
Robert Fewell 2019-08-20 15:25:46 +01:00
parent 3322397091
commit 53b7cba11e
2 changed files with 258 additions and 259 deletions

File diff suppressed because it is too large Load Diff

View File

@ -438,7 +438,7 @@ gnc_tree_view_get_show_column_menu (GncTreeView *view);
* @returns The cell renderer in use in the column.
*/
GtkCellRenderer *
gnc_tree_view_column_get_renderer(GtkTreeViewColumn *column);
gnc_tree_view_column_get_renderer (GtkTreeViewColumn *column);
/* Takes a GdkEventKey and the current path and column for the
@ -446,26 +446,26 @@ gnc_tree_view_column_get_renderer(GtkTreeViewColumn *column);
* cursor. Returns the new column and the possibly changed (if
* navigation wrapped a row) path. */
void
gnc_tree_view_keynav(GncTreeView *view, GtkTreeViewColumn **col,
GtkTreePath *path, GdkEventKey *event);
gnc_tree_view_keynav (GncTreeView *view, GtkTreeViewColumn **col,
GtkTreePath *path, GdkEventKey *event);
/* Returns TRUE if path is a vaid path for the treeview */
gboolean
gnc_tree_view_path_is_valid(GncTreeView *view, GtkTreePath *path);
gnc_tree_view_path_is_valid (GncTreeView *view, GtkTreePath *path);
/** Setup a callback for when the user starts editing so appropiate actions can be taken
* like disable the actions delete menu option.
*/
void
gnc_tree_view_set_editing_started_cb(GncTreeView *view,
GFunc editing_started_cb, gpointer editing_cb_data);
gnc_tree_view_set_editing_started_cb (GncTreeView *view,
GFunc editing_started_cb, gpointer editing_cb_data);
/** Setup a callback for when the user finishes editing so appropiate actions can be taken
* like enable the actions delete menu option.
*/
void
gnc_tree_view_set_editing_finished_cb(GncTreeView *view,
GFunc editing_finished_cb, gpointer editing_cb_data);
gnc_tree_view_set_editing_finished_cb (GncTreeView *view,
GFunc editing_finished_cb, gpointer editing_cb_data);
/** @} */