summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/remoteobjects/qremoteobjectpendingcall.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/remoteobjects/qremoteobjectpendingcall.h b/src/remoteobjects/qremoteobjectpendingcall.h
index 06c5a67..7fe3111 100644
--- a/src/remoteobjects/qremoteobjectpendingcall.h
+++ b/src/remoteobjects/qremoteobjectpendingcall.h
@@ -112,18 +112,11 @@ class QRemoteObjectPendingReply : public QRemoteObjectPendingCall
public:
typedef T Type;
- inline QRemoteObjectPendingReply()
+ QRemoteObjectPendingReply() = default;
+ explicit QRemoteObjectPendingReply(const QRemoteObjectPendingCall &call)
+ : QRemoteObjectPendingCall(call)
{
}
- inline QRemoteObjectPendingReply(const QRemoteObjectPendingReply &other)
- : QRemoteObjectPendingCall(other)
- {
- }
- explicit inline QRemoteObjectPendingReply(const QRemoteObjectPendingCall &call)
- {
- *this = call;
- }
- inline ~QRemoteObjectPendingReply() {}
QRemoteObjectPendingReply &operator=(const QRemoteObjectPendingCall &other)
{