in reply to Gtk2::SimpleList Checkboxes

In your first signal connect example, that should be row_activated, not row-activated.

-Mark

Replies are listed 'Best First'.
Re^2: Gtk2::SimpleList Checkboxes
by gnubbs (Beadle) on Mar 15, 2005 at 18:13 UTC
    Well on my system either of those actually work when called as it is in my example. If instead I want to call it as:
    $slist->signal_connect( row_activated => sub { printDebugWindow("Click +ed!") });
    then you are correct. Thanks. gnubbs