55 @return tuple giving the remaining sub-repositories, the removed ones |
55 @return tuple giving the remaining sub-repositories, the removed ones |
56 and a flag indicating to delete the removed ones from disc (list of strings, |
56 and a flag indicating to delete the removed ones from disc (list of strings, |
57 list of strings, boolean) |
57 list of strings, boolean) |
58 """ |
58 """ |
59 return ( |
59 return ( |
60 [self.subrepositories.item(row).text() |
60 [self.subrepositories.item(row).text() |
61 for row in range(self.subrepositories.count())], |
61 for row in range(self.subrepositories.count())], |
62 self.__removed, |
62 self.__removed, |
63 self.deleteCheckBox.isChecked() |
63 self.deleteCheckBox.isChecked() |
64 ) |
64 ) |