How do I block connected signals of changed text in a GtkEntry:

So far I have something like this which does not work:
  testsignal = widgets.signal_connect("on_entry2_changed", calculate.top)
  print testsignal
  entry2.signal_handler_block(testsignal)

The signal is properly connected and does work.

The print statement prints:
  None
The signal_handler_block statement reports:
  TypeError: illegal argument type for built-in operation

I know I'm supposed to pass the signal_id that is returned from the signal_connect but 
there is nothing (None) there.

--
Anthony Tekatch
use mailto:[EMAIL PROTECTED] if your mail is rejected

_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk

Reply via email to