Sun, 29 Nov 2015 12:47:20 +0100
Fixed a bug in the E5ComboBox.
(grafted from cc838476ad58fddd9cec75cbb1ae60a1f1577f39)
E5Gui/E5ComboBox.py | file | annotate | diff | comparison | revisions |
--- a/E5Gui/E5ComboBox.py Sun Nov 29 12:26:53 2015 +0100 +++ b/E5Gui/E5ComboBox.py Sun Nov 29 12:47:20 2015 +0100 @@ -39,7 +39,7 @@ @return inactive text (string) """ - return self.__lineedit.inactiveText() + return self.lineEdit().inactiveText() def setInactiveText(self, inactiveText): """ @@ -47,7 +47,7 @@ @param inactiveText text to be shown on inactivity (string) """ - self.__lineedit.setInactiveText(inactiveText) + self.lineEdit().setInactiveText(inactiveText) class E5ClearableComboBox(E5ComboBox):