Remove strict checking for rows.
Mon Aug 13 13:17:32 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeselection.c (gtk_tree_selection_select_all): (gtk_tree_selection_select_all): Remove strict checking for rows.
This commit is contained in:
committed by
Jonathan Blandford
parent
abea7e4283
commit
dcc502e95c
@ -1,3 +1,8 @@
|
||||
Mon Aug 13 13:17:32 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c (gtk_tree_selection_select_all):
|
||||
(gtk_tree_selection_select_all): Remove strict checking for rows.
|
||||
|
||||
2001-08-13 Matthias Clasen <matthiasc@waldgeist.poet.de>
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips):
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
Mon Aug 13 13:17:32 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c (gtk_tree_selection_select_all):
|
||||
(gtk_tree_selection_select_all): Remove strict checking for rows.
|
||||
|
||||
2001-08-13 Matthias Clasen <matthiasc@waldgeist.poet.de>
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips):
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
Mon Aug 13 13:17:32 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c (gtk_tree_selection_select_all):
|
||||
(gtk_tree_selection_select_all): Remove strict checking for rows.
|
||||
|
||||
2001-08-13 Matthias Clasen <matthiasc@waldgeist.poet.de>
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips):
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
Mon Aug 13 13:17:32 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c (gtk_tree_selection_select_all):
|
||||
(gtk_tree_selection_select_all): Remove strict checking for rows.
|
||||
|
||||
2001-08-13 Matthias Clasen <matthiasc@waldgeist.poet.de>
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips):
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
Mon Aug 13 13:17:32 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c (gtk_tree_selection_select_all):
|
||||
(gtk_tree_selection_select_all): Remove strict checking for rows.
|
||||
|
||||
2001-08-13 Matthias Clasen <matthiasc@waldgeist.poet.de>
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips):
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
Mon Aug 13 13:17:32 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c (gtk_tree_selection_select_all):
|
||||
(gtk_tree_selection_select_all): Remove strict checking for rows.
|
||||
|
||||
2001-08-13 Matthias Clasen <matthiasc@waldgeist.poet.de>
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips):
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
Mon Aug 13 13:17:32 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c (gtk_tree_selection_select_all):
|
||||
(gtk_tree_selection_select_all): Remove strict checking for rows.
|
||||
|
||||
2001-08-13 Matthias Clasen <matthiasc@waldgeist.poet.de>
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_set_tip, gtk_tooltips_draw_tips):
|
||||
|
||||
@ -657,7 +657,8 @@ gtk_tree_selection_select_all (GtkTreeSelection *selection)
|
||||
{
|
||||
g_return_if_fail (GTK_IS_TREE_SELECTION (selection));
|
||||
g_return_if_fail (selection->tree_view != NULL);
|
||||
g_return_if_fail (selection->tree_view->priv->tree != NULL);
|
||||
if (selection->tree_view->priv->tree == NULL)
|
||||
return;
|
||||
g_return_if_fail (selection->type != GTK_TREE_SELECTION_MULTI);
|
||||
|
||||
if (gtk_tree_selection_real_select_all (selection))
|
||||
@ -756,7 +757,9 @@ gtk_tree_selection_unselect_all (GtkTreeSelection *selection)
|
||||
{
|
||||
g_return_if_fail (GTK_IS_TREE_SELECTION (selection));
|
||||
g_return_if_fail (selection->tree_view != NULL);
|
||||
g_return_if_fail (selection->tree_view->priv->tree != NULL);
|
||||
if (selection->tree_view->priv->tree == NULL)
|
||||
return;
|
||||
|
||||
if (selection->tree_view->priv->tree == NULL)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user