Changeset 56533 in webkit


Ignore:
Timestamp:
Mar 25, 2010 5:22:24 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-25 Tasuku Suzuki <tasuku.suzuki@nokia.com>

Reviewed by Eric Seidel.

[Qt]Fix compile error with QT_NO_DEBUG_STREAM
https://bugs.webkit.org/show_bug.cgi?id=36533

  • Api/qgraphicswebview.cpp: (QGraphicsWebViewPrivate::graphicsItemVisibleRect):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qgraphicswebview.cpp

    r56450 r56533  
    404404    QList<QGraphicsView*> views = q->scene()->views();
    405405    if (views.size() > 1) {
     406#ifndef QT_NO_DEBUG_STREAM
    406407        qDebug() << "QGraphicsWebView is in more than one graphics views, unable to compute the visible rect";
     408#endif
    407409        return QRectF();
    408410    }
  • trunk/WebKit/qt/ChangeLog

    r56529 r56533  
     12010-03-25  Tasuku Suzuki  <tasuku.suzuki@nokia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt]Fix compile error with QT_NO_DEBUG_STREAM
     6        https://bugs.webkit.org/show_bug.cgi?id=36533
     7
     8        * Api/qgraphicswebview.cpp:
     9        (QGraphicsWebViewPrivate::graphicsItemVisibleRect):
     10
    1112010-03-25  Kenneth Rohde Christiansen  <kenneth@webkit.org>
    212
Note: See TracChangeset for help on using the changeset viewer.