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

quickop: use a StatusLabel to show errors from status.py

Changeset 922b431dece8

Parent 37b6b0324f7a

by Steve Borho

Changes to one file · Browse files at 922b431dece8 Showing diff from parent 37b6b0324f7a Diff from another changeset...

 
72
73
74
 
 
 
75
76
77
 
95
96
97
98
 
99
100
101
 
72
73
74
75
76
77
78
79
80
 
98
99
100
 
101
102
103
104
@@ -72,6 +72,9 @@
  self.chk = chk   layout.addWidget(chk)   + self.statusbar = qtlib.StatusLabel(self) + layout.addWidget(self.statusbar) +   BB = QDialogButtonBox   bb = QDialogButtonBox(BB.Ok|BB.Cancel)   self.connect(bb, SIGNAL("accepted()"), self, SLOT("accept()")) @@ -95,7 +98,7 @@
  self.stwidget = stwidget     self.connect(self.stwidget, SIGNAL('errorMessage'), - self.cmd.pmon.set_text) + self.statusbar.set_text)     def keyPressEvent(self, event):   if event.key() in (Qt.Key_Return, Qt.Key_Enter):