]> cloud.milkyroute.net Git - dolphin.git/blob - src/panels/places/placesitemlistgroupheader.cpp
Merge branch 'release/20.08' into master
[dolphin.git] / src / panels / places / placesitemlistgroupheader.cpp
1 /*
2 * SPDX-FileCopyrightText: 2012 Peter Penz <peter.penz19@gmail.com>
3 *
4 * Based on the Itemviews NG project from Trolltech Labs
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9 #include "placesitemlistgroupheader.h"
10
11 PlacesItemListGroupHeader::PlacesItemListGroupHeader(QGraphicsWidget* parent) :
12 KStandardItemListGroupHeader(parent)
13 {
14 }
15
16 PlacesItemListGroupHeader::~PlacesItemListGroupHeader()
17 {
18 }
19
20 void PlacesItemListGroupHeader::paintSeparator(QPainter* painter, const QColor& color)
21 {
22 Q_UNUSED(painter)
23 Q_UNUSED(color)
24 }
25
26 QPalette::ColorRole PlacesItemListGroupHeader::normalTextColorRole() const
27 {
28 return QPalette::WindowText;
29 }
30