From d1b96110409db6c8e1cf515de25b52b70975c876 Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Thu, 10 Jul 2014 18:52:38 +0200 Subject: [PATCH] Remove debug output lines. --- interface/src/Application.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 95cfaab4cf..ace265ad4f 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -803,7 +803,6 @@ bool Application::event(QEvent* event) { } void Application::keyPressEvent(QKeyEvent* event) { - qDebug("Application::keyPressEvent(%x)", event->key()); _keysPressed.insert(event->key()); @@ -1054,7 +1053,6 @@ void Application::keyPressEvent(QKeyEvent* event) { } void Application::keyReleaseEvent(QKeyEvent* event) { - qDebug("Application::keyReleaseEvent(%x)", event->key()); _keysPressed.remove(event->key());