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

repowidget: add forwarding functions for in/out/push/pull

Changeset 0079694a436b

Parent 54af0afd31fc

by Steve Borho

Changes to one file · Browse files at 0079694a436b Showing diff from parent 54af0afd31fc Diff from another changeset...

 
530
531
532
 
 
 
 
 
 
 
 
 
 
 
 
533
534
535
 
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
@@ -530,6 +530,18 @@
  self.commitDemand.forward('storeConfigs', s)   return True   + def incoming(self): + self.syncDemand.get().incoming() + + def pull(self): + self.syncDemand.get().pull() + + def outgoing(self): + self.syncDemand.get().outgoing() + + def push(self): + self.syncDemand.get().push() +   ##   ## Repoview context menu   ##