コード例 #1
0
ファイル: wctxactions.py プロジェクト: allenk/tortoisehg-caja
def openfile(parent, ui, repo, files):
    qtlib.openfiles(repo, files, parent)
コード例 #2
0
ファイル: wctxactions.py プロジェクト: allenk/tortoisehg-caja
def explore(parent, ui, repo, files):
    qtlib.openfiles(repo, files, parent)
コード例 #3
0
ファイル: wctxactions.py プロジェクト: velorientc/git_test7
def explore(parent, ui, repo, files):
    qtlib.openfiles(repo, files, parent)
コード例 #4
0
ファイル: wctxactions.py プロジェクト: velorientc/git_test7
def openfile(parent, ui, repo, files):
    qtlib.openfiles(repo, files, parent)
コード例 #5
0
 def openlocal(self):
     repo, filenames, _rev = self._findsub(self._selectedfiles)
     if not filenames:
         return
     qtlib.openfiles(repo, filenames)
コード例 #6
0
 def openlocal(self):
     repo, filenames, _rev = self._findsub(self._selectedfiles)
     if not filenames:
         return
     qtlib.openfiles(repo, filenames)
コード例 #7
0
 def openLocalFile(self, fds):
     repo = self._repoAgentFor(fds[0]).rawRepo()
     filenames = _lcanonpaths(fds)
     qtlib.openfiles(repo, filenames)