From 39ba3049f01b30c9a99ad8bb8cd94e117d1c3c65 Mon Sep 17 00:00:00 2001 From: SineStriker <trueful@163.com> Date: ćšć, 28 12æ 2023 20:54:27 +0800 Subject: [PATCH] Fix mistakes of quick module --- src/core/contexts/win32windowcontext_p.h | 10 ++-------- 1 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/core/contexts/win32windowcontext_p.h b/src/core/contexts/win32windowcontext_p.h index 3af0e13..ca64faf 100644 --- a/src/core/contexts/win32windowcontext_p.h +++ b/src/core/contexts/win32windowcontext_p.h @@ -17,8 +17,6 @@ class Win32WindowContext : public AbstractWindowContext { Q_OBJECT - Q_PROPERTY(bool needBorderPainter READ needBorderPainter FINAL) - Q_PROPERTY(int borderThickness READ borderThickness FINAL) public: Win32WindowContext(); ~Win32WindowContext() override; @@ -35,11 +33,7 @@ QString key() const override; void virtual_hook(int id, void *data) override; - bool needBorderPainter() const; - int borderThickness() const; - - void resume(const QByteArray &eventType, void *message, - QT_NATIVE_EVENT_RESULT_TYPE *result) override; + QVariant windowAttribute(const QString &key) const override; protected: void winIdChanged() override; @@ -75,7 +69,7 @@ // WM_MOUSELEAVE. bool mouseLeaveBlocked = false; - bool centered = false; + bool initialCentered = false; }; } -- Gitblit v1.9.1