diff --git a/libs/resources/KisResourceModelProvider.h b/libs/resources/KisResourceModelProvider.h index ced319521e..396409c214 100644 --- a/libs/resources/KisResourceModelProvider.h +++ b/libs/resources/KisResourceModelProvider.h @@ -1,45 +1,45 @@ /* * Copyright (c) 2018 Boudewijn Rempt * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KISRESOURCEMODELPROVIDER_H #define KISRESOURCEMODELPROVIDER_H #include #include "kritaresources_export.h" class KisResourceModel; class KRITARESOURCES_EXPORT KisResourceModelProvider { public: KisResourceModelProvider(); ~KisResourceModelProvider(); static KisResourceModel *resourceModel(const QString &resourceType); static void resetAllModels(); - void resetModel(const QString& resourceType); + static void resetModel(const QString& resourceType); private: struct Private; Private *const d; Q_DISABLE_COPY(KisResourceModelProvider) }; #endif // KISRESOURCEMODELPROVIDER_H