File indexing completed on 2024-04-21 04:04:58

0001 /*
0002     SPDX-FileCopyrightText: 2006 Matthew Williams <matt@milliams.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "themegraphicsitems.h"
0008 
0009 #include "settings.h"
0010 
0011 KSquaresSquareItem::KSquaresSquareItem(QGraphicsItem *parent) : QGraphicsRectItem(parent)
0012 {
0013 }
0014 
0015 KSquaresSquareItem::~KSquaresSquareItem() = default;
0016 
0017 void KSquaresSquareItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
0018 {
0019     QGraphicsRectItem::paint(painter, option, widget);
0020 }
0021