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

chunks: add a parent argument to ChunksWidget

Changeset 43bc9f5751b6

Parent 77fb34205a06

by Steve Borho

Changes to one file · Browse files at 43bc9f5751b6 Showing diff from parent 77fb34205a06 Diff from another changeset...

 
26
27
28
29
30
 
 
31
32
33
 
247
248
249
250
 
251
252
253
 
26
27
28
 
 
29
30
31
32
33
 
247
248
249
 
250
251
252
253
@@ -26,8 +26,8 @@
  linkActivated = pyqtSignal(QString)   showMessage = pyqtSignal(QString)   - def __init__(self, repo, ctx): - QWidget.__init__(self) + def __init__(self, repo, ctx, parent): + QWidget.__init__(self, parent)     self.repo = repo   @@ -247,7 +247,7 @@
  'for testing purposes only'   from tortoisehg.util import paths   repo = thgrepo.repository(ui, path=paths.find_root()) - dlg = ChunksWidget(repo, None) + dlg = ChunksWidget(repo, None, None)   desktopgeom = qApp.desktop().availableGeometry()   dlg.resize(desktopgeom.size() * 0.8)   return dlg