993 |
993 |
994 def __getLockActionItems(self, indicators): |
994 def __getLockActionItems(self, indicators): |
995 """ |
995 """ |
996 Private method to retrieve all emtries, that have a locked status. |
996 Private method to retrieve all emtries, that have a locked status. |
997 |
997 |
|
998 @param indicators list of indicators to check against (list of strings) |
998 @return list of all items with a locked status |
999 @return list of all items with a locked status |
999 """ |
1000 """ |
1000 lockitems = [] |
1001 lockitems = [] |
1001 for itm in self.statusList.selectedItems(): |
1002 for itm in self.statusList.selectedItems(): |
1002 if itm.text(self.__lockinfoColumn) in indicators: |
1003 if itm.text(self.__lockinfoColumn) in indicators: |