Get rid of superfluous debug output in the xcb plugin.

bb10
Samuel Rødal 2011-06-03 10:00:03 +02:00
parent ac4276531c
commit 504ab89c6a
1 changed files with 0 additions and 4 deletions

View File

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