Removed unnecessary debug output in xcb plugin.

Change-Id: I3b354a8649971a5d8c68a0b4f6bbdf6475116d65
Reviewed-on: http://codereview.qt.nokia.com/2808
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Morten Johan Sørvig <morten.sorvig@nokia.com>
This commit is contained in:
Samuel Rødal 2011-08-10 08:33:30 +02:00 committed by Morten Johan Sørvig
parent 24c7776c62
commit ac26ac4650
2 changed files with 0 additions and 6 deletions

View File

@ -116,7 +116,6 @@ void QXcbWindow::create()
destroy();
m_windowState = Qt::WindowNoState;
m_hasReceivedSyncRequest = false;
m_dirtyFrameMargins = true;
Qt::WindowType type = window()->windowType();
@ -1086,10 +1085,6 @@ void QXcbWindow::handleClientMessageEvent(const xcb_client_message_event_t *even
xcb_flush(xcb_connection());
} else if (event->data.data32[0] == atom(QXcbAtom::_NET_WM_SYNC_REQUEST)) {
connection()->setTime(event->data.data32[1]);
if (!m_hasReceivedSyncRequest) {
m_hasReceivedSyncRequest = true;
printf("Window manager supports _NET_WM_SYNC_REQUEST, syncing resizes\n");
}
m_syncValue.lo = event->data.data32[2];
m_syncValue.hi = event->data.data32[3];
} else {

View File

@ -140,7 +140,6 @@ private:
xcb_sync_int64_t m_syncValue;
xcb_sync_counter_t m_syncCounter;
bool m_hasReceivedSyncRequest;
Qt::WindowState m_windowState;
bool m_mapped;