From 86403b4e99f901f687050ce9a91a8e539331cebb Mon Sep 17 00:00:00 2001
From: Yuhang Zhao <zhaoyuhang@rankyee.com>
Date: 摹曛, 07 12月 2023 17:39:55 +0800
Subject: [PATCH] remove not needed result

---
 src/quick/quickwindowagent.cpp |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/quick/quickwindowagent.cpp b/src/quick/quickwindowagent.cpp
index 80c10e3..be70ca6 100644
--- a/src/quick/quickwindowagent.cpp
+++ b/src/quick/quickwindowagent.cpp
@@ -1,9 +1,10 @@
 #include "quickwindowagent.h"
 #include "quickwindowagent_p.h"
 
-#include "quickitemdelegate_p.h"
-
 #include <QtQuick/QQuickWindow>
+
+#include "quickitemdelegate_p.h"
+#include "quickwindowcontext_p.h"
 
 namespace QWK {
 
@@ -16,6 +17,10 @@
     void QuickWindowAgentPrivate::init() {
     }
 
+    AbstractWindowContext *QuickWindowAgentPrivate::createContext() const {
+        return new QuickWindowContext();
+    }
+
     QuickWindowAgent::QuickWindowAgent(QObject *parent)
         : QuickWindowAgent(*new QuickWindowAgentPrivate(), parent) {
     }

--
Gitblit v1.9.1