summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2011-05-18 23:07:31 +0200
committerLars Knoll <lars.knoll@nokia.com>2011-05-20 12:21:17 +0200
commitd8d6bfb81e0c52d9b39c7b9f4c18f17ba95593f6 (patch)
treefeb09e4fac9c0cd867d888a5a9bc4459afa056b9 /src/gui/kernel
parent82bba7e4efc369f75f09eb96846d733cd99ba95b (diff)
remove an unused class
QDrgResponseEvent wasn't used anywhere in Qt anymore. Get rid of it.
Diffstat (limited to 'src/gui/kernel')
-rw-r--r--src/gui/kernel/qevent.cpp15
-rw-r--r--src/gui/kernel/qevent.h13
2 files changed, 0 insertions, 28 deletions
diff --git a/src/gui/kernel/qevent.cpp b/src/gui/kernel/qevent.cpp
index 2b2277dfd4..f526a1ee83 100644
--- a/src/gui/kernel/qevent.cpp
+++ b/src/gui/kernel/qevent.cpp
@@ -2448,21 +2448,6 @@ QDragEnterEvent::~QDragEnterEvent()
}
/*!
- Constructs a drag response event containing the \a accepted value,
- indicating whether the drag and drop operation was accepted by the
- recipient.
-*/
-QDragResponseEvent::QDragResponseEvent(bool accepted)
- : QEvent(DragResponse), a(accepted)
-{}
-
-/*! \internal
-*/
-QDragResponseEvent::~QDragResponseEvent()
-{
-}
-
-/*!
\class QDragMoveEvent
\brief The QDragMoveEvent class provides an event which is sent while a drag and drop action is in progress.
diff --git a/src/gui/kernel/qevent.h b/src/gui/kernel/qevent.h
index 45b11d4795..908dfced07 100644
--- a/src/gui/kernel/qevent.h
+++ b/src/gui/kernel/qevent.h
@@ -496,19 +496,6 @@ public:
};
-/* An internal class */
-class Q_GUI_EXPORT QDragResponseEvent : public QEvent
-{
-public:
- QDragResponseEvent(bool accepted);
- ~QDragResponseEvent();
-
- inline bool dragAccepted() const { return a; }
-protected:
- bool a;
-};
-
-
class Q_GUI_EXPORT QDragLeaveEvent : public QEvent
{
public: