Skip to content

Commit

Permalink
Fixing include warnings regarding QWindowSystemInterface
Browse files Browse the repository at this point in the history
Change-Id: Ie8df028fed311e8938ed8d25552e11dc8ff9261a
Reviewed-by: Robert Griebl <robert.griebl@pelagicore.com>
  • Loading branch information
Thomas Senyk authored and Robert Griebl committed Oct 16, 2012
1 parent 9399649 commit 378d410
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Expand Up @@ -48,7 +48,7 @@
#include <QtPlatformSupport/private/qeglconvenience_p.h>

#include <QtGui/QWindow>
#include <QtGui/QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

#ifdef QT_WAYLAND_WINDOWMANAGER_SUPPORT
#include "windowmanager_integration/qwaylandwindowmanagerintegration.h"
Expand Down
Expand Up @@ -47,7 +47,7 @@
#include <QtPlatformSupport/private/qeglconvenience_p.h>

#include <QtGui/QWindow>
#include <QtGui/QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

#ifdef QT_WAYLAND_WINDOWMANAGER_SUPPORT
#include "windowmanager_integration/qwaylandwindowmanagerintegration.h"
Expand Down
Expand Up @@ -54,7 +54,7 @@
#include <qpa/qplatformclipboard.h>
#include <QtGui/QPainter>

#include <QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

#include <QtCore/QDebug>

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/wayland/qwaylandextendedoutput.cpp
Expand Up @@ -45,7 +45,7 @@

#include "wayland-output-extension-client-protocol.h"

#include <QtGui/QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

#include <QtCore/QDebug>

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/wayland/qwaylandextendedsurface.cpp
Expand Up @@ -52,7 +52,7 @@

#include <QtGui/QGuiApplication>
#include <qpa/qplatformnativeinterface.h>
#include <QtGui/QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

QWaylandSurfaceExtension::QWaylandSurfaceExtension(QWaylandDisplay *display, uint32_t id)
{
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/wayland/qwaylandinputdevice.h
Expand Up @@ -48,7 +48,7 @@
#include <QObject>
#include <qpa/qplatformintegration.h>
#include <qpa/qplatformscreen.h>
#include <QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

#include <wayland-client.h>

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/wayland/qwaylandintegration.cpp
Expand Up @@ -54,7 +54,7 @@

#include <QtGui/private/qguiapplication_p.h>

#include <QtGui/QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>
#include <qpa/qplatformcursor.h>
#include <QtGui/QSurfaceFormat>
#include <QtGui/QOpenGLContext>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/wayland/qwaylandqtkey.h
Expand Up @@ -43,7 +43,7 @@
#define QWAYLANDQTKEY_H

#include "qwaylanddisplay.h"
#include <QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

class wl_qtkey_extension;
class QWaylandQtKeyExtension
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/wayland/qwaylandscreen.cpp
Expand Up @@ -45,7 +45,7 @@
#include "qwaylandcursor.h"
#include "qwaylandextendedoutput.h"

#include <QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

QWaylandScreen::QWaylandScreen(QWaylandDisplay *waylandDisplay, struct wl_output *output, QRect geometry)
: QPlatformScreen()
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/wayland/qwaylandtouch.h
Expand Up @@ -43,7 +43,7 @@
#define QWAYLANDTOUCH_H

#include "qwaylanddisplay.h"
#include <QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

class wl_touch_extension;

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/wayland/qwaylandwindow.cpp
Expand Up @@ -58,7 +58,7 @@
#endif

#include <QCoreApplication>
#include <QtGui/QWindowSystemInterface>
#include <qpa/qwindowsysteminterface.h>

#include <QtCore/QDebug>

Expand Down

0 comments on commit 378d410

Please sign in to comment.