summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/DragImage.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/DragImage.h')
-rw-r--r--Source/WebCore/platform/DragImage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/platform/DragImage.h b/Source/WebCore/platform/DragImage.h
index e78a9d3a8..dd970d293 100644
--- a/Source/WebCore/platform/DragImage.h
+++ b/Source/WebCore/platform/DragImage.h
@@ -36,7 +36,7 @@
OBJC_CLASS NSImage;
#elif PLATFORM(QT)
QT_BEGIN_NAMESPACE
-class QImage;
+class QPixmap;
QT_END_NAMESPACE
#elif PLATFORM(WIN)
typedef struct HBITMAP__* HBITMAP;
@@ -62,7 +62,7 @@ namespace WebCore {
#if PLATFORM(MAC)
typedef RetainPtr<NSImage> DragImageRef;
#elif PLATFORM(QT)
- typedef QImage* DragImageRef;
+ typedef QPixmap* DragImageRef;
#elif PLATFORM(WIN)
typedef HBITMAP DragImageRef;
#elif PLATFORM(WX)