From 8470faeb593223fac588699deb4d45fe6301e5a3 Mon Sep 17 00:00:00 2001 From: doitux Date: Tue, 9 Oct 2007 08:41:15 +0000 Subject: [PATCH] bugfix --- src/gui/qt/gamelobbydialog/mychatinputlineedit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/qt/gamelobbydialog/mychatinputlineedit.cpp b/src/gui/qt/gamelobbydialog/mychatinputlineedit.cpp index 05cb61fc..b35195e7 100644 --- a/src/gui/qt/gamelobbydialog/mychatinputlineedit.cpp +++ b/src/gui/qt/gamelobbydialog/mychatinputlineedit.cpp @@ -28,5 +28,5 @@ void MyChatInputLineEdit::keyPressEvent( QKeyEvent * event ) { if (event->key() == Qt::Key_Tab && this->hasSelectedText()) { } - QLineEdit::event(event); + QLineEdit::keyPressEvent(event); }