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

workbench: rename local icon vars

Changeset cd31d679bcc4

Parent be4f996bf0b9

by Adrian Buehlmann

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

 
196
197
198
199
200
201
 
 
 
202
203
204
205
206
 
 
 
207
208
209
 
196
197
198
 
 
 
199
200
201
202
203
 
 
 
204
205
206
207
208
209
@@ -196,14 +196,14 @@
  self.actionHelp = QtGui.QAction(self)     self.actionBack = QtGui.QAction(self) - icon1 = QtGui.QIcon() - icon1.addPixmap(QtGui.QPixmap(":/icons/back.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.actionBack.setIcon(icon1) + icon = QtGui.QIcon() + icon.addPixmap(QtGui.QPixmap(":/icons/back.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.actionBack.setIcon(icon)     self.actionForward = QtGui.QAction(self) - icon2 = QtGui.QIcon() - icon2.addPixmap(QtGui.QPixmap(":/icons/forward.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.actionForward.setIcon(icon2) + icon = QtGui.QIcon() + icon.addPixmap(QtGui.QPixmap(":/icons/forward.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.actionForward.setIcon(icon)     self.actionShowPaths = QtGui.QAction(self)   self.actionShowPaths.setCheckable(True)