# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1053016374 0 # Node ID 3269c10bc243e8dad0552d69f016ded83a2d9553 # Parent 49654a5adcf2ac6695b33637ff360e8d2ed9fea5 Using GtkTreeSelection instead of GtkTreeView in the signal handler code for GTK 2.x was incorrect. Fixed. diff -r 49654a5adcf2 -r 3269c10bc243 gtk/dw.c --- 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; }