/* SPDX-FileCopyrightText: 2000 Geert Jansen SPDX-FileCopyrightText: 2000 Antonio Larrosa SPDX-License-Identifier: LGPL-2.0-only */ #include "kpixmapsequenceloader.h" #include namespace KPixmapSequenceLoader { KPixmapSequence load(const QString &iconName, int size) { return KPixmapSequence(KIconLoader::global()->iconPath(iconName, -size), size); } }