diff options
author | Jonathan Blandford <jrb@redhat.com> | 2002-03-15 16:37:07 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2002-03-15 16:37:07 +0000 |
commit | 51c6334d10cb7a57f7163417b35b67da63af8b31 (patch) | |
tree | 3f13b6dc6d2c2661c2c08e3b4aa49c7a3f366f9d /gtk/gtktreeview.h | |
parent | 7678a1ed1606f3cd696b1402f449d33de6856636 (diff) | |
download | gtk+-51c6334d10cb7a57f7163417b35b67da63af8b31.tar.gz |
make args const, 74159 (gtk_tree_view_insert_column_with_attributes):
Fri Mar 15 11:28:41 2002 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_insert_column_with_data_func):
make args const, 74159
(gtk_tree_view_insert_column_with_attributes): ditto
* gtk/gtktreeviewcolumn.c
(gtk_tree_view_column_cell_process_action): remov unused variables.
Diffstat (limited to 'gtk/gtktreeview.h')
-rw-r--r-- | gtk/gtktreeview.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktreeview.h b/gtk/gtktreeview.h index 7dc8eae029..69ef93b954 100644 --- a/gtk/gtktreeview.h +++ b/gtk/gtktreeview.h @@ -162,12 +162,12 @@ gint gtk_tree_view_insert_column (GtkTreeView gint position); gint gtk_tree_view_insert_column_with_attributes (GtkTreeView *tree_view, gint position, - gchar *title, + const gchar *title, GtkCellRenderer *cell, ...); gint gtk_tree_view_insert_column_with_data_func (GtkTreeView *tree_view, gint position, - gchar *title, + const gchar *title, GtkCellRenderer *cell, GtkTreeCellDataFunc func, gpointer data, |