#ifndef QCOOKIEJAR_H
#define QCOOKIEJAR_H
-#include <QObject>
-#include <QUrl>
-#include <qwebkitglobal.h>
+#include <QtCore/qobject.h>
+#include <QtCore/qurl.h>
+#include "qwebkitglobal.h"
class QCookieJarPrivate;
#ifndef QWEBFRAME_H
#define QWEBFRAME_H
-#include <qobject.h>
+#include <QtCore/qobject.h>
-#include <qwebkitglobal.h>
+#include "qwebkitglobal.h"
class QRect;
class QPoint;
#ifndef QWEBHISTORYINTERFACE_H
#define QWEBHISTORYINTERFACE_H
-#include <qobject.h>
+#include <QtCore/qobject.h>
-#include <qwebkitglobal.h>
+#include "qwebkitglobal.h"
class QWEBKIT_EXPORT QWebHistoryInterface : public QObject
{
#ifndef QWEBNETWORKINTERFACE_H
#define QWEBNETWORKINTERFACE_H
-#include <qobject.h>
-#include <qurl.h>
-#include <qhttp.h>
-#include <qbytearray.h>
+#include <QtCore/qobject.h>
+#include <QtCore/qurl.h>
+#include <QtNetwork/qhttp.h>
+#include <QtCore/qbytearray.h>
-#include <qwebkitglobal.h>
+#include "qwebkitglobal.h"
class QAuthenticator;
class QNetworkProxy;
#ifndef QWEBOBJECTPLUGIN_H
#define QWEBOBJECTPLUGIN_H
-#include <qwebkitglobal.h>
+#include "qwebkitglobal.h"
#include <QtCore/qplugin.h>
#include <QtCore/qfactoryinterface.h>
class QWebObjectPluginConnector;
#ifndef QWEBOBJECTPLUGIN_P_H
#define QWEBOBJECTPLUGIN_P_H
-#include <qglobal.h>
-#include <qwebobjectplugin.h>
+#include <QtCore/qglobal.h>
+#include "qwebobjectplugin.h"
/*
FIXME: This is copied from qfactoryloader_p.h.
#ifndef QWEBOBJECTPLUGINCONNECTOR_H
#define QWEBOBJECTPLUGINCONNECTOR_H
-#include <qwebkitglobal.h>
-#include <qobject.h>
-#include <qwebnetworkinterface.h>
+#include "qwebkitglobal.h"
+#include <QtCore/qobject.h>
+#include "qwebnetworkinterface.h"
class QWebFrame;
class QWebPage;
#include "qwebpagehistory.h"
#include "qwebsettings.h"
-#include <qwebkitglobal.h>
+#include "qwebkitglobal.h"
-#include <qwidget.h>
+#include <QtGui/qwidget.h>
class QNetworkProxy;
class QUndoStack;
class QUrl;
#ifndef QWEBPAGEHISTORY_H
#define QWEBPAGEHISTORY_H
-#include <QUrl>
-#include <QString>
-#include <QIcon>
-#include <QDateTime>
-#include <QSharedData>
+#include <QtCore/qurl.h>
+#include <QtCore/qstring.h>
+#include <QtGui/qicon.h>
+#include <QtCore/qdatetime.h>
+#include <QtCore/qshareddata.h>
-#include <qwebkitglobal.h>
+#include "qwebkitglobal.h"
class QWebPage;
#include <qwebkitglobal.h>
-#include <QString>
-#include <QPixmap>
-#include <QSharedDataPointer>
+#include <QtCore/qstring.h>
+#include <QtGui/qpixmap.h>
+#include <QtCore/qshareddata.h>
namespace WebCore
{
+2007-11-22 Simon Hausmann <hausmann@kde.org>
+
+ Reviewed by George.
+
+ Use <QtModule/headerfile.h> instead of <Classname> in public HEADER files, to not require the include paths for the other modules to be present
+
+ * Api/qcookiejar.h:
+ * Api/qwebframe.h:
+ * Api/qwebhistoryinterface.h:
+ * Api/qwebnetworkinterface.h:
+ * Api/qwebobjectplugin.h:
+ * Api/qwebobjectplugin_p.h:
+ * Api/qwebobjectpluginconnector.h:
+ * Api/qwebpage.h:
+ * Api/qwebpagehistory.h:
+ * Api/qwebsettings.h:
+
2007-11-22 Simon Hausmann <hausmann@kde.org>
Reviewed by George.