On Thu, 10 May 2001, Tim Goetze wrote:

> >There isn't any good answer to this problem for the stable branch of
> >pygtk.  You could try connecting bound methods of myEntry() to the signal,
> >so they can access the original instance via self.

Something in the line of

class Foo(gtk.GtkEntry):
        def hello(self):
                print "Hi."

f=Foo()
f.connect("changed",f.hello)

seems to work for me here.

Take care,
--
/\/\ Christian Reis, Senior Engineer, Async Open Source, Brazil
~\/~ http://async.com.br/~kiko/ | [+55 16] 274 4311

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

Reply via email to