Remove an unused variable. (#305130, Jaap A. Haitsma)

2005-05-23  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
	an unused variable.  (#305130, Jaap A. Haitsma)
This commit is contained in:
Matthias Clasen 2005-05-23 21:03:15 +00:00 committed by Matthias Clasen
parent 39d710eabe
commit 633a08fa4e
4 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2005-05-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
an unused variable. (#305130, Jaap A. Haitsma)
* gtk/gtkfilechooserdefault.c (filter_create): Don't grab
the focus away from the file list when operating the filter
combo with the pointer. (#304844, Sven Neumann)

View File

@ -1,5 +1,8 @@
2005-05-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
an unused variable. (#305130, Jaap A. Haitsma)
* gtk/gtkfilechooserdefault.c (filter_create): Don't grab
the focus away from the file list when operating the filter
combo with the pointer. (#304844, Sven Neumann)

View File

@ -1,5 +1,8 @@
2005-05-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
an unused variable. (#305130, Jaap A. Haitsma)
* gtk/gtkfilechooserdefault.c (filter_create): Don't grab
the focus away from the file list when operating the filter
combo with the pointer. (#304844, Sven Neumann)

View File

@ -12722,7 +12722,6 @@ gtk_tree_view_search_init (GtkWidget *entry,
gint len;
gint count = 0;
const gchar *text;
GtkWidget *window;
GtkTreeIter iter;
GtkTreeModel *model;
GtkTreeSelection *selection;
@ -12730,7 +12729,6 @@ gtk_tree_view_search_init (GtkWidget *entry,
g_return_if_fail (GTK_IS_ENTRY (entry));
g_return_if_fail (GTK_IS_TREE_VIEW (tree_view));
window = gtk_widget_get_parent (entry);
text = gtk_entry_get_text (GTK_ENTRY (entry));
len = strlen (text);
model = gtk_tree_view_get_model (tree_view);