From a5d13e19dd7f6037e10b649c49805922ae5e0fa6 Mon Sep 17 00:00:00 2001 From: SineStriker <trueful@163.com> Date: 周五, 22 12月 2023 17:04:29 +0800 Subject: [PATCH] Prepare to remove style support again --- src/core/windowagentbase.cpp | 18 ++---------------- 1 files changed, 2 insertions(+), 16 deletions(-) diff --git a/src/core/windowagentbase.cpp b/src/core/windowagentbase.cpp index 28c9945..819dfb2 100644 --- a/src/core/windowagentbase.cpp +++ b/src/core/windowagentbase.cpp @@ -55,23 +55,9 @@ return d->context->windowAttribute(key); } - void WindowAgentBase::setWindowAttribute(const QString &key, const QVariant &var) { + bool WindowAgentBase::setWindowAttribute(const QString &key, const QVariant &attribute) { Q_D(WindowAgentBase); - d->context->setWindowAttribute(key, var); - } - - bool WindowAgentBase::isEnabled() const { - Q_D(const WindowAgentBase); - return d->context->isEnabled(); - } - - void WindowAgentBase::setEnabled(bool enabled) { - Q_D(WindowAgentBase); - if (enabled == d->context->isEnabled()) { - return; - } - d->context->setEnabled(enabled); - Q_EMIT enabledChanged(enabled); + return d->context->setWindowAttribute(key, attribute); } void WindowAgentBase::showSystemMenu(const QPoint &pos) { -- Gitblit v1.9.1