71 def __updateQt4Sample(self): |
71 def __updateQt4Sample(self): |
72 """ |
72 """ |
73 Private slot to update the Qt4 tools sample label. |
73 Private slot to update the Qt4 tools sample label. |
74 """ |
74 """ |
75 self.qt4SampleLabel.setText( |
75 self.qt4SampleLabel.setText( |
76 "Sample: {0}designer{1}".format(self.qt4PrefixEdit.text(), |
76 self.tr("Sample: {0}designer{1}").format( |
77 self.qt4PostfixEdit.text())) |
77 self.qt4PrefixEdit.text(), self.qt4PostfixEdit.text())) |
78 |
78 |
79 @pyqtSlot(str) |
79 @pyqtSlot(str) |
80 def on_qt4PrefixEdit_textChanged(self, txt): |
80 def on_qt4PrefixEdit_textChanged(self, txt): |
81 """ |
81 """ |
82 Private slot to handle a change in the entered Qt directory. |
82 Private slot to handle a change in the entered Qt directory. |