summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2002-11-21 19:28:43 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2002-11-21 19:28:43 +0000
commit76f5554f779fb28fc11670e2a4c9aab3ba676e8d (patch)
tree2b98ab6ee257d82a53c8e023cbd8c97f5a735147
parent446f241c233bdf9bc09bb0687627d2405f20650c (diff)
downloadgtk+-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)
-rw-r--r--ChangeLog3
-rw-r--r--ChangeLog.pre-2-103
-rw-r--r--ChangeLog.pre-2-23
-rw-r--r--ChangeLog.pre-2-43
-rw-r--r--ChangeLog.pre-2-63
-rw-r--r--ChangeLog.pre-2-83
-rw-r--r--gtk/gtktreeview.c14
7 files changed, 25 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index efc11646cc..a54ad30a5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2002-11-21 Matthias Clasen <maclas@gmx.de>
+ * gtk/gtktreeview.c (gtk_tree_view_set_cursor): Fix doc
+ comment typos. (#97432, Vitaly Tishkov)
+
* gtk/gtktreemodel.c (gtk_tree_model_iter_nth_child): Fix doc
comment typos. (#98158, Vitaly Tishkov)
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index efc11646cc..a54ad30a5b 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,8 @@
2002-11-21 Matthias Clasen <maclas@gmx.de>
+ * gtk/gtktreeview.c (gtk_tree_view_set_cursor): Fix doc
+ comment typos. (#97432, Vitaly Tishkov)
+
* gtk/gtktreemodel.c (gtk_tree_model_iter_nth_child): Fix doc
comment typos. (#98158, Vitaly Tishkov)
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index efc11646cc..a54ad30a5b 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,5 +1,8 @@
2002-11-21 Matthias Clasen <maclas@gmx.de>
+ * gtk/gtktreeview.c (gtk_tree_view_set_cursor): Fix doc
+ comment typos. (#97432, Vitaly Tishkov)
+
* gtk/gtktreemodel.c (gtk_tree_model_iter_nth_child): Fix doc
comment typos. (#98158, Vitaly Tishkov)
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index efc11646cc..a54ad30a5b 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,5 +1,8 @@
2002-11-21 Matthias Clasen <maclas@gmx.de>
+ * gtk/gtktreeview.c (gtk_tree_view_set_cursor): Fix doc
+ comment typos. (#97432, Vitaly Tishkov)
+
* gtk/gtktreemodel.c (gtk_tree_model_iter_nth_child): Fix doc
comment typos. (#98158, Vitaly Tishkov)
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index efc11646cc..a54ad30a5b 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,5 +1,8 @@
2002-11-21 Matthias Clasen <maclas@gmx.de>
+ * gtk/gtktreeview.c (gtk_tree_view_set_cursor): Fix doc
+ comment typos. (#97432, Vitaly Tishkov)
+
* gtk/gtktreemodel.c (gtk_tree_model_iter_nth_child): Fix doc
comment typos. (#98158, Vitaly Tishkov)
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index efc11646cc..a54ad30a5b 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,5 +1,8 @@
2002-11-21 Matthias Clasen <maclas@gmx.de>
+ * gtk/gtktreeview.c (gtk_tree_view_set_cursor): Fix doc
+ comment typos. (#97432, Vitaly Tishkov)
+
* gtk/gtktreemodel.c (gtk_tree_model_iter_nth_child): Fix doc
comment typos. (#98158, Vitaly Tishkov)
diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c
index 5fe798daed..d7d0865270 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,