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