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

workbench: unify connect coding style a bit

Changeset f383545feb13

Parent c3b247eba6e6

by Adrian Buehlmann

Changes to one file · Browse files at f383545feb13 Showing diff from parent c3b247eba6e6 Diff from another changeset...

 
265
266
267
268
269
270
271
272
273
 
 
 
 
 
 
274
 
275
276
277
 
265
266
267
 
 
 
 
 
 
268
269
270
271
272
273
274
275
276
277
278
@@ -265,13 +265,14 @@
    def createActions(self):   # main window actions (from .ui file) - connect(self.actionRefresh, SIGNAL('triggered()'), self.reload) - connect(self.actionAbout, SIGNAL('triggered()'), self.on_about) - connect(self.actionQuit, SIGNAL('triggered()'), self.close) - connect(self.actionBack, SIGNAL('triggered()'), self.back) - connect(self.actionForward, SIGNAL('triggered()'), self.forward) - connect(self.actionShowPaths, SIGNAL('toggled(bool)'), self.actionShowPathsToggled) + self.actionRefresh.triggered.connect(self.reload) + self.actionAbout.triggered.connect(self.on_about) + self.actionQuit.triggered.connect(self.close) + self.actionBack.triggered.connect(self.back) + self.actionForward.triggered.connect(self.forward) + self.actionShowPaths.toggled.connect(self.actionShowPathsToggled)   self.actionShowRepoRegistry.toggled.connect(self.showRepoRegistry) +   self.actionQuit.setIcon(geticon('quit'))   self.actionRefresh.setIcon(geticon('reload'))