Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py

changeset 564
b3d966393ba9
parent 500
c3abc7895a01
child 571
1a4101cb87eb
equal deleted inserted replaced
563:e35d2cda9a74 564:b3d966393ba9
38 @param parent The parent widget. (QWidget) 38 @param parent The parent widget. (QWidget)
39 """ 39 """
40 QDialog.__init__(self, parent) 40 QDialog.__init__(self, parent)
41 self.setupUi(self) 41 self.setupUi(self)
42 42
43 self.showButton = self.buttonBox.addButton(\ 43 self.showButton = self.buttonBox.addButton(
44 self.trUtf8("Show"), QDialogButtonBox.ActionRole) 44 self.trUtf8("Show"), QDialogButtonBox.ActionRole)
45 self.showButton.setToolTip(\ 45 self.showButton.setToolTip(
46 self.trUtf8("Press to show all files containing an issue")) 46 self.trUtf8("Press to show all files containing an issue"))
47 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) 47 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
48 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) 48 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
49 49
50 self.resultList.headerItem().setText(self.resultList.columnCount(), "") 50 self.resultList.headerItem().setText(self.resultList.columnCount(), "")

eric ide

mercurial