formlayout icon indicating copy to clipboard operation
formlayout copied to clipboard

Drop support for PyQt4 v4.4 (and earlier) by removing old-style signals and slots syntax

Open PierreRaybaut opened this issue 9 years ago • 0 comments

Following Issue #35, we will remove all the old-style signals and slots.

The following example:

if SIGNAL is None:
    self.widget.valueChanged.connect(layout.update)
else:
    self.connect(self.widget, SIGNAL("valueChanged(int)"), layout.update)

should be replaced by:

self.widget.valueChanged.connect(layout.update)

PierreRaybaut avatar May 25 '16 09:05 PierreRaybaut