Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

filedialogs: use module import of fileview

Changeset 243d029d4253

Parent 8f90244b2535

by Steve Borho

Changes to one file · Browse files at 243d029d4253 Showing diff from parent 8f90244b2535 Diff from another changeset...

 
23
24
25
26
27
28
29
 
30
31
32
 
136
137
138
139
 
140
141
142
 
23
24
25
 
26
27
28
29
30
31
32
 
136
137
138
 
139
140
141
142
@@ -23,10 +23,10 @@
   from tortoisehg.util import hglib  from tortoisehg.hgqt.i18n import _ -from tortoisehg.hgqt.fileview import HgFileView  from tortoisehg.hgqt.repoview import HgRepoView  from tortoisehg.hgqt.revpanel import RevPanelWidget  from tortoisehg.hgqt import qtlib, visdiff, filerevmodel, blockmatcher, lexers +from tortoisehg.hgqt import fileview    from PyQt4.QtCore import *  from PyQt4.QtGui import * @@ -136,7 +136,7 @@
  self.revpanel.linkActivated.connect(self.onLinkActivated)   vbox.addWidget(self.revpanel, 0)   - self.textView = HgFileView(self.repo, self) + self.textView = fileview.HgFileView(self.repo, self)   self.textView.revisionSelected.connect(self.goto)   vbox.addWidget(self.textView, 1)