From b58c49291a400b3c45c07cb8cae2053cbd8d9b19 Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Mon, 3 Nov 2025 20:54:06 +0800 Subject: Fix AutoHIMC no override destructor. --- src/platform/gui/win/InputMethod.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/platform/gui/win/InputMethod.cpp') diff --git a/src/platform/gui/win/InputMethod.cpp b/src/platform/gui/win/InputMethod.cpp index 6f5955fb..e5b75cdb 100644 --- a/src/platform/gui/win/InputMethod.cpp +++ b/src/platform/gui/win/InputMethod.cpp @@ -21,7 +21,6 @@ AutoHIMC::AutoHIMC(AutoHIMC&& other) AutoHIMC& AutoHIMC::operator=(AutoHIMC&& other) { if (this != &other) { - Object::operator=(std::move(other)); this->hwnd_ = other.hwnd_; this->handle_ = other.handle_; other.hwnd_ = nullptr; -- cgit v1.2.3