Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py

changeset 4126
c28d0cf3b639
parent 4021
195a471c327b
child 4278
ccd1e13cb9bd
equal deleted inserted replaced
4125:056d98a54dd4 4126:c28d0cf3b639
223 """ 223 """
224 Public slot to start the svn info command. 224 Public slot to start the svn info command.
225 225
226 @param url the repository URL to browser (string) 226 @param url the repository URL to browser (string)
227 """ 227 """
228 self.repoTree.clear()
229
228 self.url = "" 230 self.url = ""
229 231
230 self.urlCombo.addItem(self.__normalizeUrl(url)) 232 url = self.__normalizeUrl(url)
233 if self.urlCombo.findText(url) == -1:
234 self.urlCombo.addItem(url)
231 235
232 @pyqtSlot(str) 236 @pyqtSlot(str)
233 def on_urlCombo_currentIndexChanged(self, text): 237 def on_urlCombo_currentIndexChanged(self, text):
234 """ 238 """
235 Private slot called, when a new repository URL is entered or selected. 239 Private slot called, when a new repository URL is entered or selected.

eric ide

mercurial