302 "VcsProjectBrowserHelper", |
302 "VcsProjectBrowserHelper", |
303 "Do you really want to remove these files/directories" |
303 "Do you really want to remove these files/directories" |
304 " from the repository (and disk)?"), |
304 " from the repository (and disk)?"), |
305 files) |
305 files) |
306 |
306 |
307 if dlg.exec() == QDialog.Accepted: |
307 if dlg.exec() == QDialog.DialogCode.Accepted: |
308 status = self.vcs.vcsRemove(names) |
308 status = self.vcs.vcsRemove(names) |
309 if status: |
309 if status: |
310 if isRemoveDirs: |
310 if isRemoveDirs: |
311 self.browser._removeDir() |
311 self.browser._removeDir() |
312 # remove directories from Project |
312 # remove directories from Project |