--- a/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py Sun Mar 09 12:16:00 2014 +0100 +++ b/Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py Sun Mar 09 17:06:40 2014 +0100 @@ -255,7 +255,7 @@ self.vcsMenuActions.append(act) act = menu.addAction( UI.PixmapCache.getIcon("vcsLog.png"), - self.tr('Show log browser'), self.__SVNLogBrowser) + self.tr('Show log browser'), self._VCSLogBrowser) self.vcsMenuActions.append(act) menu.addSeparator() act = menu.addAction( @@ -567,7 +567,7 @@ self.vcsDirMenuActions.append(act) act = menu.addAction( UI.PixmapCache.getIcon("vcsLog.png"), - self.tr('Show log browser'), self.__SVNLogBrowser) + self.tr('Show log browser'), self._VCSLogBrowser) self.vcsDirMenuActions.append(act) menu.addSeparator() act = menu.addAction( @@ -871,20 +871,6 @@ fn = itm.fileName() self.vcs.svnSbsDiff(fn, extended=True) - def __SVNLogBrowser(self): - """ - Private slot called by the context menu to show the log browser for a - file. - """ - itm = self.browser.currentItem() - try: - fn = itm.fileName() - isFile = True - except AttributeError: - fn = itm.dirName() - isFile = False - self.vcs.svnLogBrowser(fn, isFile=isFile) - def __SVNBlame(self): """ Private slot called by the context menu to show the blame of a file.