From 8c04583e0b3c1f5264ffeec1d1d7a97616e37be5 Mon Sep 17 00:00:00 2001 From: Laszlo Agocs Date: Mon, 9 Jan 2012 11:21:21 +0200 Subject: [PATCH] Remove logging of key presses in qwindow-compositor. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I505b262687bb32853a69c4dccb79a05f68b1dced Sanity-Review: Qt Sanity Bot Reviewed-by: Jørgen Lind --- examples/qwindow-compositor/qwindowcompositor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/qwindow-compositor/qwindowcompositor.cpp b/examples/qwindow-compositor/qwindowcompositor.cpp index e97bfb6..7a61804 100644 --- a/examples/qwindow-compositor/qwindowcompositor.cpp +++ b/examples/qwindow-compositor/qwindowcompositor.cpp @@ -98,7 +98,8 @@ WaylandSurface *QWindowCompositor::surfaceAt(const QPoint &point, QPoint *local) return 0; } -GLuint QWindowCompositor::composeSurface(WaylandSurface *surface) { +GLuint QWindowCompositor::composeSurface(WaylandSurface *surface) +{ GLuint texture = 0; glBindFramebuffer(GL_FRAMEBUFFER, m_surface_fbo); @@ -226,7 +227,6 @@ bool QWindowCompositor::eventFilter(QObject *obj, QEvent *event) } case QEvent::KeyPress: { QKeyEvent *ke = static_cast(event); - qDebug() << ke->key(); if (ke->key() == Qt::Key_Meta || ke->key() == Qt::Key_Super_L) { m_dragKeyIsPressed = true; } -- 2.7.4