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.
This commit is contained in:
Jonathan Blandford
2002-03-15 16:37:07 +00:00
committed by Jonathan Blandford
parent 7678a1ed16
commit 51c6334d10
10 changed files with 67 additions and 5 deletions

View File

@ -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,