882 |
882 |
883 def __getLockActionItems(self, indicators): |
883 def __getLockActionItems(self, indicators): |
884 """ |
884 """ |
885 Private method to retrieve all entries, that have a locked status. |
885 Private method to retrieve all entries, that have a locked status. |
886 |
886 |
|
887 @param indicators list of indicators to check against (list of strings) |
887 @return list of all items with a locked status |
888 @return list of all items with a locked status |
888 """ |
889 """ |
889 lockitems = [] |
890 lockitems = [] |
890 for itm in self.statusList.selectedItems(): |
891 for itm in self.statusList.selectedItems(): |
891 if itm.text(self.__lockinfoColumn) in indicators: |
892 if itm.text(self.__lockinfoColumn) in indicators: |