I have a combo box with a special add-on that works fine in PyQt4 but doesn't work in PySide.
I checked that the new instance replaces the QComboBox built-in bundle because the built-in termination no longer occurs. However, when you start with PySide, the add-on does not produce a filtered list of parameters.
I also tried to make sure that all text is all str or all unicode in order to avoid differences between PyQt API 1 using QStrings and PySide for Python Unicode types. Changing the text types did not affect the behavior of PyQt or PySide (PyQt continues to work, PySide does not work).
Here is my code:
from PySide import QtCore from PySide import QtGui
source share