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