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

stable icons: Change qdelete dialog icon to "remove" icon

Changeset 740edef47cc0

Parent e8bed3c03ea6

by Angel Ezquerra

Changes to one file · Browse files at 740edef47cc0 Showing diff from parent e8bed3c03ea6 Diff from another changeset...

 
11
12
13
 
14
15
16
 
21
22
23
24
 
25
26
27
 
11
12
13
14
15
16
17
 
22
23
24
 
25
26
27
28
@@ -11,6 +11,7 @@
 from PyQt4.QtGui import *    from tortoisehg.util import hglib +from tortoisehg.hgqt import qtlib  from tortoisehg.hgqt.i18n import _  from tortoisehg.hgqt import cmdui   @@ -21,7 +22,7 @@
  def __init__(self, repo, patches, parent):   super(QDeleteDialog, self).__init__(parent)   self.setWindowTitle(_('Patch remove - %s') % repo.displayname) - + self.setWindowIcon(qtlib.geticon('remove'))   f = self.windowFlags()   self.setWindowFlags(f & ~Qt.WindowContextHelpButtonHint)   self.repo = repo