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

merge: emit 'repoInvalidated' signal

Changeset 56df0f2cafe8

Parent 953283d297ce

by Yuki KODAMA

Changes to one file · Browse files at 56df0f2cafe8 Showing diff from parent 953283d297ce Diff from another changeset...

 
374
375
376
 
377
378
379
 
394
395
396
 
397
398
399
 
416
417
418
 
419
420
421
 
609
610
611
 
612
613
614
 
374
375
376
377
378
379
380
 
395
396
397
398
399
400
401
 
418
419
420
421
422
423
424
 
612
613
614
615
616
617
618
@@ -374,6 +374,7 @@
  if wrapper.data == 0:   repo = self.wizard().repo   hglib.invalidaterepo(repo) + self.wizard().repoInvalidated.emit()   self.done = True   self.wizard().next()   else: @@ -394,6 +395,7 @@
  def finished(wrapper):   if wrapper.data == 0:   hglib.invalidaterepo(self.wizard().repo) + self.wizard().repoInvalidated.emit()   def callback():   text = _('Outstanding changes are saved to <b>'   '%(name)s</b> in the patch queue. <a href' @@ -416,6 +418,7 @@
  def finished(wrapper):   if wrapper.data == 0:   hglib.invalidaterepo(self.wizard().repo) + self.wizard().repoInvalidated.emit()   self.check_status()   cmdline = ['update', '--clean', '--rev', self.wizard().local]   self.runner = cmdui.Runner(_('Discard - TortoiseHg'), self) @@ -609,6 +612,7 @@
  def command_finished(self, wrapper):   if wrapper.data == 0:   hglib.invalidaterepo(self.wizard().repo) + self.wizard().repoInvalidated.emit()   self.done = True   self.wizard().next()