684 fn = itm.dirName() |
684 fn = itm.dirName() |
685 isFile = os.path.isfile(fn) |
685 isFile = os.path.isfile(fn) |
686 movefiles = self.browser.project.getFiles(fn) |
686 movefiles = self.browser.project.getFiles(fn) |
687 if self.vcs.vcsMove(fn, self.project): |
687 if self.vcs.vcsMove(fn, self.project): |
688 if isFile: |
688 if isFile: |
689 self.browser.emit(SIGNAL('closeSourceWindow'), fn) |
689 self.browser.closeSourceWindow.emit(fn) |
690 else: |
690 else: |
691 for mf in movefiles: |
691 for mf in movefiles: |
692 self.browser.emit(SIGNAL('closeSourceWindow'), mf) |
692 self.browser.closeSourceWindow.emit(mf) |
693 |
693 |
694 def __SVNResolve(self): |
694 def __SVNResolve(self): |
695 """ |
695 """ |
696 Private slot called by the context menu to resolve conflicts of a file. |
696 Private slot called by the context menu to resolve conflicts of a file. |
697 """ |
697 """ |