eric6/VCS/ProjectBrowserHelper.py

changeset 7759
51aa6c6b66f7
parent 7360
9190402e4505
child 7781
607a6098cb44
equal deleted inserted replaced
7758:dd54d33d21d2 7759:51aa6c6b66f7
303 "VcsProjectBrowserHelper", 303 "VcsProjectBrowserHelper",
304 "Do you really want to remove these files/directories" 304 "Do you really want to remove these files/directories"
305 " from the repository (and disk)?"), 305 " from the repository (and disk)?"),
306 files) 306 files)
307 307
308 if dlg.exec_() == QDialog.Accepted: 308 if dlg.exec() == QDialog.Accepted:
309 status = self.vcs.vcsRemove(names) 309 status = self.vcs.vcsRemove(names)
310 if status: 310 if status:
311 if isRemoveDirs: 311 if isRemoveDirs:
312 self.browser._removeDir() 312 self.browser._removeDir()
313 # remove directories from Project 313 # remove directories from Project
403 Protected slot called to show some vcs information. 403 Protected slot called to show some vcs information.
404 """ 404 """
405 from .RepositoryInfoDialog import VcsRepositoryInfoDialog 405 from .RepositoryInfoDialog import VcsRepositoryInfoDialog
406 info = self.vcs.vcsRepositoryInfos(self.project.ppath) 406 info = self.vcs.vcsRepositoryInfos(self.project.ppath)
407 dlg = VcsRepositoryInfoDialog(None, info) 407 dlg = VcsRepositoryInfoDialog(None, info)
408 dlg.exec_() 408 dlg.exec()
409 409
410 def _updateVCSStatus(self, name): 410 def _updateVCSStatus(self, name):
411 """ 411 """
412 Protected method to update the VCS status of an item. 412 Protected method to update the VCS status of an item.
413 413

eric ide

mercurial