diff options
Diffstat (limited to 'src/lineedit.cpp')
-rw-r--r-- | src/lineedit.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lineedit.cpp b/src/lineedit.cpp index bef65d27..c9df7bfa 100644 --- a/src/lineedit.cpp +++ b/src/lineedit.cpp @@ -53,7 +53,7 @@ void LineEdit::keyPressEvent(QKeyEvent *event) clearFocus(); event->accept(); } - + KLineEdit::keyPressEvent(event); } @@ -67,7 +67,7 @@ void LineEdit::contextMenuEvent(QContextMenuEvent *event) void LineEdit::focusInEvent(QFocusEvent *event) { selectAll(); - + KLineEdit::focusInEvent(event); } @@ -75,7 +75,7 @@ void LineEdit::focusInEvent(QFocusEvent *event) void LineEdit::focusOutEvent(QFocusEvent *event) { KLineEdit::focusOutEvent(event); - + // reset cursor state and deselect setCursorPosition(0); deselect(); |