Sine Striker
2023-12-21 862cbfe3032b1f71977fb66af7bd87645ec3eeac
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;
    }
 
}