Renamed SearchImagePaginator

This commit is contained in:
Digital Artifex
2026-06-17 20:08:28 -04:00
parent 7871f3a8cc
commit 32085a6a52
@@ -16,8 +16,8 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/> * along with this program. If not, see <https://www.gnu.org/licenses/>
*/ */
#ifndef SEARCHIMAGESPAGINATOR_H #ifndef IMAGESEARCHPAGINATOR_H
#define SEARCHIMAGESPAGINATOR_H #define IMAGESEARCHPAGINATOR_H
#include <QObject> #include <QObject>
#include <QNetworkAccessManager> #include <QNetworkAccessManager>
@@ -29,14 +29,14 @@
#include <QJsonArray> #include <QJsonArray>
#include <QJsonObject> #include <QJsonObject>
#include "wallpaperpaginator.h" #include "imagepaginator.h"
#include "common/komplex_global.h" #include "common/komplex_global.h"
class KOMPLEX_EXPORT SearchImagesPaginator : public WallpaperPaginator class KOMPLEX_EXPORT ImageSearchPaginator : public ImagePaginator
{ {
public: public:
explicit SearchImagesPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent) explicit ImageSearchPaginator(QObject *parent = nullptr) : ImagePaginator(parent)
{ {
setUri( setUri(
QString::fromUtf8(KOMPLEX_ENDPOINT_IMAGES_SEARCH) QString::fromUtf8(KOMPLEX_ENDPOINT_IMAGES_SEARCH)
@@ -44,4 +44,4 @@ public:
} }
}; };
#endif // SEARCHIMAGESPAGINATOR_H #endif // IMAGESEARCHPAGINATOR_H