From 6ac7e2f710fdbea19f2416b1b26517f533398893 Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Sun, 4 Jan 2015 22:59:49 +0100 Subject: QCursor: add move ctor QCursor already dealt with d == nullptr, so this is trivial. Change-Id: Ib2c6a3f0dc8b93035ffe3059cdce925463706e10 Reviewed-by: Olivier Goffart --- src/gui/kernel/qcursor.cpp | 10 ++++++++++ src/gui/kernel/qcursor.h | 1 + 2 files changed, 11 insertions(+) diff --git a/src/gui/kernel/qcursor.cpp b/src/gui/kernel/qcursor.cpp index 235d2b3053..9c5bce7750 100644 --- a/src/gui/kernel/qcursor.cpp +++ b/src/gui/kernel/qcursor.cpp @@ -148,6 +148,16 @@ QT_BEGIN_NAMESPACE \sa QWidget, {fowler}{GUI Design Handbook: Cursors} */ +/*! + \fn QCursor::QCursor(QCursor &&other) + \since 5.5 + + Move-constructs a cursor from \a other. After being moved from, + the only valid operations on \a other are destruction and + (move and copy) assignment. The effects of calling any other + member function on a moved-from instance are undefined. +*/ + /*! \fn QCursor &QCursor::operator=(QCursor &&other) diff --git a/src/gui/kernel/qcursor.h b/src/gui/kernel/qcursor.h index 72c6a6504f..3c0e8ecf30 100644 --- a/src/gui/kernel/qcursor.h +++ b/src/gui/kernel/qcursor.h @@ -80,6 +80,7 @@ public: ~QCursor(); QCursor &operator=(const QCursor &cursor); #ifdef Q_COMPILER_RVALUE_REFS + QCursor(QCursor &&other) Q_DECL_NOTHROW : d(other.d) { other.d = Q_NULLPTR; } inline QCursor &operator=(QCursor &&other) { qSwap(d, other.d); return *this; } #endif -- cgit v1.2.3