22 side=E5LineEdit.RightSide): |
22 side=E5LineEdit.RightSide): |
23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |
27 @keyparam inactiveText text to be shown on inactivity (string) |
27 @param inactiveText text to be shown on inactivity (string) |
28 @keyparam side side the clear button should be shown at |
28 @param side side the clear button should be shown at |
29 (E5LineEdit.RightSide, E5LineEdit.LeftSide) |
29 (E5LineEdit.RightSide, E5LineEdit.LeftSide) |
30 """ |
30 """ |
31 super(IrcMessageEdit, self).__init__(parent, inactiveText, side) |
31 super(IrcMessageEdit, self).__init__(parent, inactiveText, side) |
32 |
32 |
33 self.__historyList = [""] # initialize with one empty line |
33 self.__historyList = [""] # initialize with one empty line |