Remove debug output lines.

This commit is contained in:
Aleric Inglewood 2014-07-10 18:52:38 +02:00 committed by Carlo Wood
parent 801be7edee
commit d1b9611040

View file

@ -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());