Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable mq: connect qqueue dialog's output to MQ widget

When MQ widget is used inside the Workbench, this forwards the output and error
events to the Workbench log widget.

Changeset b0375e3f733f

Parent 4620895da3e3

by Steve Borho

Changes to one file · Browse files at b0375e3f733f Showing diff from parent 4620895da3e3 Diff from another changeset...

 
485
486
487
 
 
488
489
490
 
485
486
487
488
489
490
491
492
@@ -485,6 +485,8 @@
  def launchQQueueTool(self):   dlg = qqueue.QQueueDialog(self.repo, self)   dlg.finished.connect(dlg.deleteLater) + dlg.output.connect(self.output) + dlg.makeLogVisible.connect(self.makeLogVisible)   dlg.exec_()   self.reload()