Sine Striker
2023-12-21 77f10f7c5eb8716c06eb7e0447c3fd8dbcb48d79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "styleagent_p.h"
 
#include <QtCore/QVariant>
 
namespace QWK {
 
    void StyleAgentPrivate::setupSystemThemeHook() {
    }
 
    void StyleAgentPrivate::removeSystemThemeHook() {
    }
 
    bool StyleAgentPrivate::updateWindowAttribute(QWindow *window, const QString &key,
                                                  const QVariant &attribute,
                                                  const QVariant &oldAttribute) {
        Q_UNUSED(oldAttribute)
        return false;
    }
 
}