Sine Striker
2023-12-13 84ef238611127b9d964ecb54bea283e0141d2998
src/core/contexts/qtwindowcontext.cpp
@@ -40,22 +40,21 @@
#endif
    }
    QtWindowContext::QtWindowContext(QObject *host, WindowItemDelegate *delegate)
        : AbstractWindowContext(host, delegate) {
    QtWindowContext::QtWindowContext() : AbstractWindowContext() {
    }
    QtWindowContext::~QtWindowContext() {
    }
    bool QtWindowContext::setup() {
        if (!m_windowHandle) {
            return false;
        }
        return false;
    QString QtWindowContext::key() const {
        return QStringLiteral("qt");
    }
    bool QtWindowContext::eventFilter(QObject *obj, QEvent *event) {
        return AbstractWindowContext::eventFilter(obj, event);
    void QtWindowContext::virtual_hook(int id, void *data) {
    }
    bool QtWindowContext::setupHost() {
        return true;
    }
}