summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tools/styleplugin/plugin/simplestyle.cpp
blob: 93bea72bcd8c84afbf7203fc4677609cec620190 (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "simplestyle.h"

void SimpleStyle::polish(QPalette &palette)
{
    palette.setBrush(QPalette::Button, Qt::red);
}