diff options
-rw-r--r-- | src/gui/painting/qwindowsurface_nacl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/painting/qwindowsurface_nacl.cpp b/src/gui/painting/qwindowsurface_nacl.cpp index c8fab6e105..d4a1a3e2fd 100644 --- a/src/gui/painting/qwindowsurface_nacl.cpp +++ b/src/gui/painting/qwindowsurface_nacl.cpp @@ -54,7 +54,7 @@ QNaClWindowSurface::QNaClWindowSurface mScreen(screen), mImage(screen->geometry().size(), QImage::Format_ARGB32_Premultiplied) { - qDebug() << "QNaClWindowSurface::QNaClWindowSurface:" << (long)this; +// qDebug() << "QNaClWindowSurface::QNaClWindowSurface:" << (long)this; mImage.fill(QColor(140, 140, 140, 255).rgba()); } @@ -64,7 +64,7 @@ QNaClWindowSurface::~QNaClWindowSurface() QPaintDevice *QNaClWindowSurface::paintDevice() { - qDebug() << "QNaClWindowSurface::paintDevice"; +// qDebug() << "QNaClWindowSurface::paintDevice"; return &mImage; } @@ -85,7 +85,7 @@ void QNaClWindowSurface::flush(QWidget *widget, const QRegion ®ion, const QPo void QNaClWindowSurface::setGeometry(const QRect &rect) { //fprintf(stderr, "QNaClWindowSurface::setGeometry %d %d", rect.width(), rect.height()); - qDebug() << "QNaClWindowSurface::setGeometry:" << (long)this << rect; + //qDebug() << "QNaClWindowSurface::setGeometry:" << (long)this << rect; if (mImage.size().isValid()) {// use first set size only. |