File indexing completed on 2025-04-20 03:37:41
0001 /* 0002 This file is part of the KDE libraries 0003 0004 SPDX-FileCopyrightText: 2021 Christoph Cullmann <cullmann@kde.org> 0005 0006 SPDX-License-Identifier: LGPL-2.0-or-later 0007 */ 0008 0009 #include "breezeicons.h" 0010 0011 #include <QIcon> 0012 0013 namespace BreezeIcons 0014 { 0015 0016 void initIcons() 0017 { 0018 // ensure we fallback to breeze 0019 QIcon::setFallbackThemeName(QStringLiteral("breeze")); 0020 } 0021 0022 }