File indexing completed on 2024-05-12 03:55:46

0001 /*
0002     SPDX-FileCopyrightText: 2000 Geert Jansen <jansen@kde.org>
0003     SPDX-FileCopyrightText: 2000 Antonio Larrosa <larrosa@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only
0006 */
0007 
0008 #include "kpixmapsequenceloader.h"
0009 
0010 #include <KIconLoader>
0011 
0012 namespace KPixmapSequenceLoader
0013 {
0014 
0015 KPixmapSequence load(const QString &iconName, int size)
0016 {
0017     return KPixmapSequence(KIconLoader::global()->iconPath(iconName, -size), size);
0018 }
0019 
0020 }