diff options
author | Tasuku Suzuki <[email protected]> | 2012-05-17 05:14:12 +0900 |
---|---|---|
committer | Qt by Nokia <[email protected]> | 2012-05-23 01:11:34 +0200 |
commit | 3a14f0301c4cce71a5573c6e5742dc6d00967b6c (patch) | |
tree | 5c21c419d251618ef4bae7cfabd3aec2d1ff0dec /src/gui/kernel/qwindowsysteminterface_qpa.cpp | |
parent | 4d238a5684d2e678c309d0ae8ed7f76a5f2bd682 (diff) |
Fix QtGui compilation for -qconfig large
Change-Id: I118a9b40c9eef821b326ee9dabbb9765d65277b7
Reviewed-by: Oswald Buddenhagen <[email protected]>
Diffstat (limited to 'src/gui/kernel/qwindowsysteminterface_qpa.cpp')
-rw-r--r-- | src/gui/kernel/qwindowsysteminterface_qpa.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/kernel/qwindowsysteminterface_qpa.cpp b/src/gui/kernel/qwindowsysteminterface_qpa.cpp index c011fa4e134..0759b3c08e8 100644 --- a/src/gui/kernel/qwindowsysteminterface_qpa.cpp +++ b/src/gui/kernel/qwindowsysteminterface_qpa.cpp @@ -497,6 +497,7 @@ int QWindowSystemInterface::windowSystemEventsQueued() return QWindowSystemInterfacePrivate::windowSystemEventsQueued(); } +#ifndef QT_NO_DRAGANDDROP QPlatformDragQtResponse QWindowSystemInterface::handleDrag(QWindow *w, const QMimeData *dropData, const QPoint &p, Qt::DropActions supportedActions) { return QGuiApplicationPrivate::processDrag(w, dropData, p,supportedActions); @@ -506,6 +507,7 @@ QPlatformDropQtResponse QWindowSystemInterface::handleDrop(QWindow *w, const QMi { return QGuiApplicationPrivate::processDrop(w, dropData, p,supportedActions); } +#endif // QT_NO_DRAGANDDROP /*! \fn static QWindowSystemInterface::handleNativeEvent(QWindow *window, const QByteArray &eventType, void *message, long *result) |