changeset 422:3269c10bc243

Using GtkTreeSelection instead of GtkTreeView in the signal handler code for GTK 2.x was incorrect. Fixed.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 15 May 2003 16:32:54 +0000
parents 49654a5adcf2
children c1c75e363a91
files gtk/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gtk/dw.c	Thu May 15 16:21:27 2003 +0000
+++ b/gtk/dw.c	Thu May 15 16:32:54 2003 +0000
@@ -7829,7 +7829,7 @@
 
 		sigid = _set_signal_handler(treeview, window, sigfunc, data, thisfunc);
 		cid = g_signal_connect(G_OBJECT(thiswindow), thisname, (GCallback)thisfunc, (gpointer)sigid);
-		_set_signal_handler_id(thiswindow, sigid, cid);
+		_set_signal_handler_id(treeview, sigid, cid);
 		DW_MUTEX_UNLOCK;
 		return;
 	}