[PyKDE] QComboBox signals [SOLVED]

Tom Brown brown at esteem.com
Wed May 3 02:17:01 BST 2006


On Tuesday 02 May 2006 18:07, Tom Brown wrote:
> self.connect(self.ui.modelCB, SIGNAL('editTextChanged(const QString &
> text)'), self.modelChanged)
Doh! This was another stupid mistake. I just had to remove the argument name 
from the signal so it looks like this:

self.connect(self.ui.modelCB, SIGNAL('editTextChanged(const QString &)'),
  self.modelChanged)

Thanks,
Tom




More information about the PyQt mailing list