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()): |