On 20.01.07 20:11:10, Arne Stäcker wrote:
> Hi, 
> I'm new to Qt and PyQt and I have a problem with QTabWidget, which I cannot 
> solve by myself.
> I want to use tabs and do some action, when the tab is changed. From the Qt 
> docs I tried with this code:
> 
> <Code snippet>
> ...
> self.tabWidget = QTabWidget(self)
> self.connect(self.tabWidget, SIGNAL("currentChanged()"), self.slotTabChanged)
> ...
> </Code snippet>

You forgot the parameter. currentChanged takes an int as parameter and
connections only work when providing the list of parameters, because
they are string-based on the methods signature.

Andreas

-- 
You will soon forget this.

_______________________________________________
PyKDE mailing list    [email protected]
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Reply via email to