RE: Blocking signals
- From: "Ratcliffe, Jeffrey (Peters)" <Jeffrey Ratcliffe External eads com>
- To:
- Cc: gtk-perl-list gnome org
- Subject: RE: Blocking signals
- Date: Tue, 19 Sep 2006 06:59:47 +0200
First, you're trying to pack $button into $vbox twice.
I'm throwing together my demo problems too quickly!
GLib-GObject-WARNING **: gsignal.c:1735: instance `0x9aceab0' has no
handler with id `28' at block.pl line 28.
You're trying to block and unblock the right signal id on the wrong
instance.
$slist -> {signalid} = $slist -> get_model -> signal_connect(...);
...
$slist->signal_handler_block($slist -> {signalid});
...
$slist->signal_handler_unblock($slist -> {signalid});
Change those to $slist->get_model->signal_handler_block() and
$slist->get_model->signal_handler_unblock() and you'll be in business.
As indeed I am. Thanks!
Jeff
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]