diff options
author | Ulf Hermann <[email protected]> | 2019-05-23 11:16:23 +0200 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2019-05-23 09:33:53 +0000 |
commit | 2f24150b03a8141b3e64442bcfcc08448b9a79e5 (patch) | |
tree | d742b17e50d24b82f7e5e58a04abf6c7a73cb4c2 /src/quick/items/qquickmousearea_p_p.h | |
parent | c8c2db3f5b157131542025ce556d248c7a916a00 (diff) |
Add a feature for Drag&Drop support in Qt Quick
Even if we have drag&drop in QtGui we don't necessarily want it in
QtQuick. Also, since the QQuickDropArea needs QRegularExpression,
quick-draganddrop needs to depend on regularexpression.
Change-Id: I623e910178160ad3e3af3c01c96c30e88dc1b7ba
Reviewed-by: Samuel Gaist <[email protected]>
Reviewed-by: Shawn Rutledge <[email protected]>
Diffstat (limited to 'src/quick/items/qquickmousearea_p_p.h')
-rw-r--r-- | src/quick/items/qquickmousearea_p_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/items/qquickmousearea_p_p.h b/src/quick/items/qquickmousearea_p_p.h index 0dd2690d43..fba383e268 100644 --- a/src/quick/items/qquickmousearea_p_p.h +++ b/src/quick/items/qquickmousearea_p_p.h @@ -97,7 +97,7 @@ public: bool overThreshold : 1; Qt::MouseButtons pressed; int pressAndHoldInterval; -#if QT_CONFIG(draganddrop) +#if QT_CONFIG(quick_draganddrop) QQuickDrag *drag; #endif QPointer<QQuickPointerMask> mask; |