diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-11-21 19:28:43 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-11-21 19:28:43 +0000 |
commit | 76f5554f779fb28fc11670e2a4c9aab3ba676e8d (patch) | |
tree | 2b98ab6ee257d82a53c8e023cbd8c97f5a735147 /gtk/gtktreeview.c | |
parent | 446f241c233bdf9bc09bb0687627d2405f20650c (diff) | |
download | gdk-pixbuf-76f5554f779fb28fc11670e2a4c9aab3ba676e8d.tar.gz |
Fix doc comment typos. (#97432, Vitaly Tishkov)
* gtk/gtktreeview.c (gtk_tree_view_set_cursor): Fix doc
comment typos. (#97432, Vitaly Tishkov)
Diffstat (limited to 'gtk/gtktreeview.c')
-rw-r--r-- | gtk/gtktreeview.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c index 5fe798dae..d7d086527 100644 --- a/gtk/gtktreeview.c +++ b/gtk/gtktreeview.c @@ -9407,7 +9407,7 @@ gtk_tree_view_row_expanded (GtkTreeView *tree_view, return (node->children != NULL); } -static GtkTargetEntry row_targets[] = { +static const GtkTargetEntry row_targets[] = { { "GTK_TREE_MODEL_ROW", GTK_TARGET_SAME_WIDGET, 0 } }; @@ -9560,12 +9560,12 @@ gtk_tree_view_get_cursor (GtkTreeView *tree_view, * * Sets the current keyboard focus to be at @path, and selects it. This is * useful when you want to focus the user's attention on a particular row. If - * @column is not %NULL, then focus is given to the column specified by it. - * Additionally, if @column is specified, and @start_editing is %TRUE, then - * editing should be started in the specified cell. This function is often - * followed by @gtk_widget_grab_focus (@tree_view) in order to give keyboard - * focus to the widget. Please note that editing can only happen when the - * widget is realized. + * @focus_column is not %NULL, then focus is given to the column specified by + * it. Additionally, if @focus_column is specified, and @start_editing is + * %TRUE, then editing should be started in the specified cell. + * This function is often followed by @gtk_widget_grab_focus (@tree_view) + * in order to give keyboard focus to the widget. Please note that editing + * can only happen when the widget is realized. **/ void gtk_tree_view_set_cursor (GtkTreeView *tree_view, |