aboutsummaryrefslogtreecommitdiff
path: root/src/platform
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-11-03 20:54:06 +0800
committerYuqian Yang <crupest@crupest.life>2025-11-04 17:23:02 +0800
commitb58c49291a400b3c45c07cb8cae2053cbd8d9b19 (patch)
tree91333990d6263d66f6af0c7f97e7df76e4c890c8 /src/platform
parent40bbf3c14a782673bbd36c8a98adb0934b06add5 (diff)
downloadcru-b58c49291a400b3c45c07cb8cae2053cbd8d9b19.tar.gz
cru-b58c49291a400b3c45c07cb8cae2053cbd8d9b19.tar.bz2
cru-b58c49291a400b3c45c07cb8cae2053cbd8d9b19.zip
Fix AutoHIMC no override destructor.
Diffstat (limited to 'src/platform')
-rw-r--r--src/platform/gui/win/InputMethod.cpp1
1 files changed, 0 insertions, 1 deletions
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;