From f91e124880aa1c21f54a998ad12d2428a545df98 Mon Sep 17 00:00:00 2001 From: Sine Striker <trueful@163.com> Date: 周一, 02 9月 2024 19:11:38 +0800 Subject: [PATCH] Update qmsetup --- src/widgets/widgetwindowagent.cpp | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/widgets/widgetwindowagent.cpp b/src/widgets/widgetwindowagent.cpp index 27ff365..aa48f79 100644 --- a/src/widgets/widgetwindowagent.cpp +++ b/src/widgets/widgetwindowagent.cpp @@ -1,4 +1,5 @@ -// Copyright (C) 2023-2024 Stdware Collections +// Copyright (C) 2023-2024 Stdware Collections (https://www.github.com/stdware) +// Copyright (C) 2021-2023 wangwenx190 (Yuhang Zhao) // SPDX-License-Identifier: Apache-2.0 #include "widgetwindowagent.h" @@ -55,7 +56,7 @@ } w->setAttribute(Qt::WA_DontCreateNativeAncestors); - w->setAttribute(Qt::WA_NativeWindow); + w->setAttribute(Qt::WA_NativeWindow); // Create new window id d->setup(w, new WidgetItemDelegate()); d->hostWidget = w; @@ -122,7 +123,7 @@ You're supposed to make sure that the specified widget \a w is a child or descendant of the title bar widget. */ - void WidgetWindowAgent::setHitTestVisible(const QWidget *w, bool visible) { + void WidgetWindowAgent::setHitTestVisible(QWidget *w, bool visible) { Q_D(WidgetWindowAgent); d->context->setHitTestVisible(w, visible); } -- Gitblit v1.9.1