Fix copy and move semantics for DnD proxy handle

This commit is contained in:
Robbert van der Helm
2021-07-10 02:17:10 +02:00
parent dbb1b09256
commit bc9d4d02a2
2 changed files with 3 additions and 20 deletions
+2 -2
View File
@@ -60,10 +60,10 @@ class WineXdndProxy {
~Handle() noexcept;
Handle(const Handle&) noexcept;
Handle& operator=(const Handle&) noexcept;
Handle& operator=(const Handle&) noexcept = default;
Handle(Handle&&) noexcept;
Handle& operator=(Handle&&) noexcept;
Handle& operator=(Handle&&) noexcept = default;
private:
WineXdndProxy* proxy;