summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tools/styleplugin/plugin/simplestyle.cpp
blob: fa60d50140717dd07d41fedddfa2082843d4b087 (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::Text, Qt::red);
}