138 @return tuple of list of two URL strings (list of strings) and |
138 @return tuple of list of two URL strings (list of strings) and |
139 a flag indicating a diff summary (boolean) |
139 a flag indicating a diff summary (boolean) |
140 """ |
140 """ |
141 if self.vcs.otherData["standardLayout"]: |
141 if self.vcs.otherData["standardLayout"]: |
142 url1 = self.repoRootLabel1.text() + \ |
142 url1 = self.repoRootLabel1.text() + \ |
143 self.typeCombo1.currentText() + \ |
143 self.typeCombo1.currentText() + \ |
144 self.labelCombo1.currentText() |
144 self.labelCombo1.currentText() |
145 url2 = self.repoRootLabel2.text() + \ |
145 url2 = self.repoRootLabel2.text() + \ |
146 self.typeCombo2.currentText() + \ |
146 self.typeCombo2.currentText() + \ |
147 self.labelCombo2.currentText() |
147 self.labelCombo2.currentText() |
148 else: |
148 else: |
149 url1 = self.labelCombo1.currentText() |
149 url1 = self.labelCombo1.currentText() |
150 url2 = self.labelCombo2.currentText() |
150 url2 = self.labelCombo2.currentText() |
151 |
151 |
152 return [url1, url2], self.summaryCheckBox.isChecked() |
152 return [url1, url2], self.summaryCheckBox.isChecked() |