From 504ab89c6a94c32d61ca45809ee618a8982577a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Samuel=20R=C3=B8dal?= Date: Fri, 3 Jun 2011 10:00:03 +0200 Subject: [PATCH] Get rid of superfluous debug output in the xcb plugin. --- src/plugins/platforms/xcb/qxcbwindow.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/plugins/platforms/xcb/qxcbwindow.cpp b/src/plugins/platforms/xcb/qxcbwindow.cpp index 2a45d1e..fc888b8 100644 --- a/src/plugins/platforms/xcb/qxcbwindow.cpp +++ b/src/plugins/platforms/xcb/qxcbwindow.cpp @@ -174,8 +174,6 @@ void QXcbWindow::create() m_window = XCreateWindow(DISPLAY_FROM_XCB(this), xcb_parent_id, rect.x(), rect.y(), rect.width(), rect.height(), 0, visualInfo->depth, InputOutput, visualInfo->visual, CWBackPixel|CWBorderPixel|CWColormap, &a); - - printf("created GL window: %x\n", m_window); } else { qFatal("no window!"); } @@ -199,8 +197,6 @@ void QXcbWindow::create() m_screen->screen()->root_visual, // visual 0, // value mask 0)); // value list - - printf("created regular window: %x\n", m_window); } connection()->addWindow(m_window, this); -- 2.7.4