eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py

changeset 8204
fd477cded1c1
parent 8199
f6db89b067e7
child 8205
4a0f1f896341
equal deleted inserted replaced
8203:dbcdb07cb600 8204:fd477cded1c1
2046 """ 2046 """
2047 Private slot to filter the list of messages based on selected message 2047 Private slot to filter the list of messages based on selected message
2048 code. 2048 code.
2049 """ 2049 """
2050 selectedMessageCode = self.filterComboBox.currentText() 2050 selectedMessageCode = self.filterComboBox.currentText()
2051 print(selectedMessageCode)
2052 2051
2053 for topRow in range(self.resultList.topLevelItemCount()): 2052 for topRow in range(self.resultList.topLevelItemCount()):
2054 topItem = self.resultList.topLevelItem(topRow) 2053 topItem = self.resultList.topLevelItem(topRow)
2055 visibleChildren = topItem.childCount() 2054 visibleChildren = topItem.childCount()
2056 for childIndex in range(topItem.childCount()): 2055 for childIndex in range(topItem.childCount()):

eric ide

mercurial