File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,6 @@ void BasicKeyboardInterfaceTestWidget::setResultModifier(const QString &str) {
7474}
7575
7676void LEdit::keyPressEvent (QKeyEvent *pe) {
77- qDebug () << " keypress k " << pe->key () << " auto " << pe->isAutoRepeat ()<< " mod " << pe->modifiers ();
7877 emit keyDown ();
7978 currentText += pe->text ();
8079 setText (currentText);
@@ -87,7 +86,6 @@ qDebug() << "keypress k " << pe->key() << " auto " << pe->isAutoRepeat()<< " m
8786}
8887
8988void LEdit::keyReleaseEvent (QKeyEvent *pe) {
90- qDebug () << " keyprel k " << pe->key () << " auto " << pe->isAutoRepeat () << " mod " << pe->modifiers ();
9189 emit keyUp ();
9290 if (pe->modifiers () & Qt::ShiftModifier)
9391 emit keyModifier (QString::fromStdString (" Shift" ));
You can’t perform that action at this time.
0 commit comments