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:

committed by
Matthias Clasen

parent
39d710eabe
commit
633a08fa4e
@ -1,5 +1,8 @@
|
|||||||
2005-05-23 Matthias Clasen <mclasen@redhat.com>
|
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
|
* gtk/gtkfilechooserdefault.c (filter_create): Don't grab
|
||||||
the focus away from the file list when operating the filter
|
the focus away from the file list when operating the filter
|
||||||
combo with the pointer. (#304844, Sven Neumann)
|
combo with the pointer. (#304844, Sven Neumann)
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2005-05-23 Matthias Clasen <mclasen@redhat.com>
|
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
|
* gtk/gtkfilechooserdefault.c (filter_create): Don't grab
|
||||||
the focus away from the file list when operating the filter
|
the focus away from the file list when operating the filter
|
||||||
combo with the pointer. (#304844, Sven Neumann)
|
combo with the pointer. (#304844, Sven Neumann)
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2005-05-23 Matthias Clasen <mclasen@redhat.com>
|
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
|
* gtk/gtkfilechooserdefault.c (filter_create): Don't grab
|
||||||
the focus away from the file list when operating the filter
|
the focus away from the file list when operating the filter
|
||||||
combo with the pointer. (#304844, Sven Neumann)
|
combo with the pointer. (#304844, Sven Neumann)
|
||||||
|
@ -12722,7 +12722,6 @@ gtk_tree_view_search_init (GtkWidget *entry,
|
|||||||
gint len;
|
gint len;
|
||||||
gint count = 0;
|
gint count = 0;
|
||||||
const gchar *text;
|
const gchar *text;
|
||||||
GtkWidget *window;
|
|
||||||
GtkTreeIter iter;
|
GtkTreeIter iter;
|
||||||
GtkTreeModel *model;
|
GtkTreeModel *model;
|
||||||
GtkTreeSelection *selection;
|
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_ENTRY (entry));
|
||||||
g_return_if_fail (GTK_IS_TREE_VIEW (tree_view));
|
g_return_if_fail (GTK_IS_TREE_VIEW (tree_view));
|
||||||
|
|
||||||
window = gtk_widget_get_parent (entry);
|
|
||||||
text = gtk_entry_get_text (GTK_ENTRY (entry));
|
text = gtk_entry_get_text (GTK_ENTRY (entry));
|
||||||
len = strlen (text);
|
len = strlen (text);
|
||||||
model = gtk_tree_view_get_model (tree_view);
|
model = gtk_tree_view_get_model (tree_view);
|
||||||
|
Reference in New Issue
Block a user