diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-16 17:52:49 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-16 17:52:49 +0200 |
commit | a703dc6d9f827d3508749f7dfc58431cc349fbef (patch) | |
tree | 5f72a4c00d836850233be23f10fee5542c235f28 | |
parent | Don't change my typed url... (diff) | |
download | rekonq-a703dc6d9f827d3508749f7dfc58431cc349fbef.tar.xz |
Fixed pano issue about urlbar copy selection
-rw-r--r-- | src/lineedit.cpp | 13 | ||||
-rw-r--r-- | src/lineedit.h | 2 |
2 files changed, 0 insertions, 15 deletions
diff --git a/src/lineedit.cpp b/src/lineedit.cpp index b691e090..fe8095ab 100644 --- a/src/lineedit.cpp +++ b/src/lineedit.cpp @@ -66,19 +66,6 @@ void LineEdit::keyPressEvent(QKeyEvent *event) } -void LineEdit::contextMenuEvent(QContextMenuEvent *event) -{ - KLineEdit::contextMenuEvent(event); -} - - -void LineEdit::focusInEvent(QFocusEvent *event) -{ - selectAll(); - - KLineEdit::focusInEvent(event); -} - void LineEdit::mouseDoubleClickEvent(QMouseEvent *) { selectAll(); diff --git a/src/lineedit.h b/src/lineedit.h index 40e8d6d4..67ded052 100644 --- a/src/lineedit.h +++ b/src/lineedit.h @@ -49,8 +49,6 @@ public: protected: virtual void keyPressEvent(QKeyEvent*); - virtual void contextMenuEvent(QContextMenuEvent*); - virtual void focusInEvent(QFocusEvent*); virtual void mouseDoubleClickEvent(QMouseEvent *); }; |