Changeset 48676
- Timestamp:
- 09/23/09 09:23:47 (6 months ago)
- Location:
- trunk/WebKit/qt
- Files:
-
- 3 modified
-
Api/qwebgraphicsitem.cpp (modified) (1 diff)
-
Api/qwebview.cpp (modified) (1 diff)
-
ChangeLog (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebKit/qt/Api/qwebgraphicsitem.cpp
r48627 r48676 30 30 #include <QtGui/qgraphicssceneevent.h> 31 31 #include <QtGui/qstyleoption.h> 32 #if defined(Q_WS_X11) 32 33 #include <QX11Info> 34 #endif 33 35 34 36 class QWebGraphicsItemPrivate : public QWebPageClient { -
trunk/WebKit/qt/Api/qwebview.cpp
r48627 r48676 32 32 #include "qdir.h" 33 33 #include "qfile.h" 34 #if defined(Q_WS_X11) 34 35 #include <QX11Info> 36 #endif 35 37 36 38 class QWebViewPrivate : public QWebPageClient { -
trunk/WebKit/qt/ChangeLog
r48632 r48676 1 2009-09-23 Norbert Leser <norbert.leser@nokia.com> 2 3 Reviewed by Tor Arne Vestbø. 4 5 Need to guard QX11Info include with Q_WS_X11. 6 That class may not be available (in QT 4.5 for Symbian, for instance). 7 Completes fixes in r48627 and r48604. 8 9 * Api/qwebgraphicsitem.cpp: 10 * Api/qwebview.cpp: 11 1 12 2009-09-22 Jocelyn Turcotte <jocelyn.turcotte@nokia.com> 2 13