summaryrefslogtreecommitdiff
path: root/gtk/gtktreednd.c
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@redhat.com>2001-10-31 21:55:55 +0000
committerJonathan Blandford <jrb@src.gnome.org>2001-10-31 21:55:55 +0000
commitd7a97b9728628830ff8f9cd533d8a57cc7c92ed9 (patch)
treeb89135352e6b4078c6cd6e35f0c3b4d502cb5d78 /gtk/gtktreednd.c
parentf2f7090a62339d4fd9904f9900b82bf9f8b02765 (diff)
downloadgtk+-d7a97b9728628830ff8f9cd533d8a57cc7c92ed9.tar.gz
rename gtk_selection_data_set_tree_row, #60218
Wed Oct 31 16:53:48 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreednd.c (gtk_tree_set_row_drag_data): rename gtk_selection_data_set_tree_row, #60218 (gtk_tree_get_row_drag_data): rename gtk_selection_data_get_tree_row, #60218 * gtk/gtktreemodel.c (gtk_tree_row_ref_deleted_callback): Actually get this right, after the third try, #63122.
Diffstat (limited to 'gtk/gtktreednd.c')
-rw-r--r--gtk/gtktreednd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtktreednd.c b/gtk/gtktreednd.c
index bdf9e4abde..8f1cd7b3af 100644
--- a/gtk/gtktreednd.c
+++ b/gtk/gtktreednd.c
@@ -196,7 +196,7 @@ struct _TreeRowData
};
/**
- * gtk_selection_data_set_tree_row:
+ * gtk_tree_set_row_drag_data:
* @selection_data: some #GtkSelectionData
* @tree_model: a #GtkTreeModel
* @path: a row in @tree_model
@@ -207,9 +207,9 @@ struct _TreeRowData
* Return value: %TRUE if the #GtkSelectionData had the proper target type to allow us to set a tree row
**/
gboolean
-gtk_selection_data_set_tree_row (GtkSelectionData *selection_data,
- GtkTreeModel *tree_model,
- GtkTreePath *path)
+gtk_tree_set_row_drag_data (GtkSelectionData *selection_data,
+ GtkTreeModel *tree_model,
+ GtkTreePath *path)
{
TreeRowData *trd;
gchar *path_str;
@@ -249,7 +249,7 @@ gtk_selection_data_set_tree_row (GtkSelectionData *selection_data,
}
/**
- * gtk_selection_data_get_tree_row:
+ * gtk_tree_get_row_drag_data:
* @selection_data: a #GtkSelectionData
* @tree_model: a #GtkTreeModel
* @path: row in @tree_model
@@ -268,9 +268,9 @@ gtk_selection_data_set_tree_row (GtkSelectionData *selection_data,
* is otherwise valid
**/
gboolean
-gtk_selection_data_get_tree_row (GtkSelectionData *selection_data,
- GtkTreeModel **tree_model,
- GtkTreePath **path)
+gtk_tree_get_row_drag_data (GtkSelectionData *selection_data,
+ GtkTreeModel **tree_model,
+ GtkTreePath **path)
{
TreeRowData *trd;