Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

filelistmodel: remove unneeded load_config()

Changeset c6e5151eacec

Parent 204413b98152

by Adrian Buehlmann

Changes to one file · Browse files at c6e5151eacec Showing diff from parent 204413b98152 Diff from another changeset...

 
21
22
23
24
25
26
27
 
44
45
46
47
48
49
50
 
56
57
58
59
60
61
62
63
64
 
21
22
23
 
24
25
26
 
43
44
45
 
46
47
48
 
54
55
56
 
 
 
57
58
59
@@ -21,7 +21,6 @@
 from tortoisehg.util.util import isbfile, Curry    from tortoisehg.hgqt.graph import ismerge, diff as revdiff -from tortoisehg.hgqt.config import HgConfig  from tortoisehg.hgqt import icon as geticon    from PyQt4 import QtCore, QtGui @@ -44,7 +43,6 @@
  QtCore.QAbstractTableModel.__init__(self, parent)   self.repo = repo   self._datacache = {} - self.load_config()   self.current_ctx = None   self._files = []   self._filesdict = {} @@ -56,9 +54,6 @@
  self.loadFiles()   self.emit(SIGNAL('layoutChanged()'))   - def load_config(self): - cfg = HgConfig(self.repo.ui) -   def setDiffWidth(self, w):   if w != self.diffwidth:   self.diffwidth = w