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

@ -1,3 +1,12 @@
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.
Fri Mar 15 13:31:51 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active

View File

@ -1,3 +1,12 @@
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.
Fri Mar 15 13:31:51 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active

View File

@ -1,3 +1,12 @@
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.
Fri Mar 15 13:31:51 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active

View File

@ -1,3 +1,12 @@
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.
Fri Mar 15 13:31:51 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active

View File

@ -1,3 +1,12 @@
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.
Fri Mar 15 13:31:51 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active

View File

@ -1,3 +1,12 @@
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.
Fri Mar 15 13:31:51 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active

View File

@ -1,3 +1,12 @@
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.
Fri Mar 15 13:31:51 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkmenu.c (gtk_menu_leave_notify): Fix test for "active

View File

@ -7929,7 +7929,7 @@ gtk_tree_view_insert_column (GtkTreeView *tree_view,
gint
gtk_tree_view_insert_column_with_attributes (GtkTreeView *tree_view,
gint position,
gchar *title,
const gchar *title,
GtkCellRenderer *cell,
...)
{
@ -7983,7 +7983,7 @@ gtk_tree_view_insert_column_with_attributes (GtkTreeView *tree_view,
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,

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,

View File

@ -2357,7 +2357,6 @@ gtk_tree_view_column_cell_process_action (GtkTreeViewColumn *tree_column,
}
else if (action == CELL_ACTION_EVENT)
{
gint x_offset, y_offset, width, height;
gboolean try_event = FALSE;
if (event)