diff options
author | Jonathan Blandford <jrb@redhat.com> | 2002-03-25 04:10:49 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2002-03-25 04:10:49 +0000 |
commit | 7cc14762b9c1cbef337242dd47eea85136f66a4f (patch) | |
tree | 3ceac577ed48f22a2f82678a871dc3a2bfb9ab7e /gtk/gtktreemodel.c | |
parent | 2a8fc72b0dfd892fe6e47babc2a5a0de5a12e757 (diff) | |
download | gtk+-7cc14762b9c1cbef337242dd47eea85136f66a4f.tar.gz |
Make path arg const, #75653
Sun Mar 24 10:32:38 2002 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreemodel.c (gtk_tree_path_copy): Make path arg const, #75653
* gtk/gtkfontsel.c (gtk_font_selection_show_available_styles): fix
a warning
* gtk/gtktreeview.c (gtk_tree_view_button_press): remove the grab
when we emit row_activated so that listeners of this signal can
grab the mouse, #75629
Diffstat (limited to 'gtk/gtktreemodel.c')
-rw-r--r-- | gtk/gtktreemodel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktreemodel.c b/gtk/gtktreemodel.c index b03824c143..9749a4ddb2 100644 --- a/gtk/gtktreemodel.c +++ b/gtk/gtktreemodel.c @@ -345,7 +345,7 @@ gtk_tree_path_free (GtkTreePath *path) * Return value: A new #GtkTreePath. **/ GtkTreePath * -gtk_tree_path_copy (GtkTreePath *path) +gtk_tree_path_copy (const GtkTreePath *path) { GtkTreePath *retval; |