E5Gui/E5TreeSortFilterProxyModel.py

changeset 1131
7781e396c903
parent 945
8cd4d08fa9f6
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
22 """ 22 """
23 Constructor 23 Constructor
24 24
25 @param parent reference to the parent object (QObject) 25 @param parent reference to the parent object (QObject)
26 """ 26 """
27 QSortFilterProxyModel.__init__(self, parent) 27 super().__init__(parent)
28 28
29 self.setFilterCaseSensitivity(Qt.CaseInsensitive) 29 self.setFilterCaseSensitivity(Qt.CaseInsensitive)
30 30
31 def filterAcceptsRow(self, sourceRow, sourceParent): 31 def filterAcceptsRow(self, sourceRow, sourceParent):
32 """ 32 """

eric ide

mercurial