forked from AuroraMiddleware/gtk
do not try to find the clicked node in the tree when tree == NULL
Thu Dec 13 20:37:27 2001 Kristian Rietveld <kris@gtk.org> * gtk/gtktreeview.c (gtk_tree_view_button_press): do not try to find the clicked node in the tree when tree == NULL
This commit is contained in:
parent
5a3de51ba1
commit
fe655f3919
@ -1,3 +1,8 @@
|
||||
Thu Dec 13 20:37:27 2001 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
|
||||
to find the clicked node in the tree when tree == NULL
|
||||
|
||||
2001-12-13 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): Compare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Dec 13 20:37:27 2001 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
|
||||
to find the clicked node in the tree when tree == NULL
|
||||
|
||||
2001-12-13 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): Compare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Dec 13 20:37:27 2001 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
|
||||
to find the clicked node in the tree when tree == NULL
|
||||
|
||||
2001-12-13 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): Compare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Dec 13 20:37:27 2001 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
|
||||
to find the clicked node in the tree when tree == NULL
|
||||
|
||||
2001-12-13 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): Compare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Dec 13 20:37:27 2001 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
|
||||
to find the clicked node in the tree when tree == NULL
|
||||
|
||||
2001-12-13 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): Compare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Dec 13 20:37:27 2001 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
|
||||
to find the clicked node in the tree when tree == NULL
|
||||
|
||||
2001-12-13 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): Compare
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Dec 13 20:37:27 2001 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): do not try
|
||||
to find the clicked node in the tree when tree == NULL
|
||||
|
||||
2001-12-13 Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_button_press): Compare
|
||||
|
@ -1654,7 +1654,8 @@ gtk_tree_view_button_press (GtkWidget *widget,
|
||||
"horizontal_separator", &horizontal_separator,
|
||||
NULL);
|
||||
|
||||
if (event->window == tree_view->priv->bin_window)
|
||||
if (event->window == tree_view->priv->bin_window &&
|
||||
tree_view->priv->tree != NULL)
|
||||
{
|
||||
GtkRBNode *node;
|
||||
GtkRBTree *tree;
|
||||
|
Loading…
Reference in New Issue
Block a user