diff --git a/KomplexHubPlugin/paginators/featuredimagespaginator.h b/KomplexHubPlugin/paginators/featuredimagespaginator.h index 3b9dfbb..ff6f841 100644 --- a/KomplexHubPlugin/paginators/featuredimagespaginator.h +++ b/KomplexHubPlugin/paginators/featuredimagespaginator.h @@ -36,11 +36,8 @@ class KOMPLEX_EXPORT FeaturedImagesPaginator : public ImagePaginator public: explicit FeaturedImagesPaginator(QObject *parent = nullptr) : ImagePaginator(parent) { - setUri( - QString::fromUtf8(KOMPLEX_ENDPOINT_IMAGES_FEATURED) - ); - - controller()->setWindowSize(20); + setUri(KOMPLEX_ENDPOINT_IMAGES_FEATURED); + controller()->setWindowSize(32); } }; diff --git a/KomplexHubPlugin/paginators/featuredpackspaginator.h b/KomplexHubPlugin/paginators/featuredpackspaginator.h index d767036..8f8da34 100644 --- a/KomplexHubPlugin/paginators/featuredpackspaginator.h +++ b/KomplexHubPlugin/paginators/featuredpackspaginator.h @@ -36,10 +36,7 @@ class KOMPLEX_EXPORT FeaturedPacksPaginator : public WallpaperPaginator public: explicit FeaturedPacksPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent) { - setUri( - QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_FEATURED) - ); - + setUri(KOMPLEX_ENDPOINT_PACKS_FEATURED); controller()->setWindowSize(32); } }; diff --git a/KomplexHubPlugin/paginators/featuredvideospaginator.h b/KomplexHubPlugin/paginators/featuredvideospaginator.h index 2f57252..4ee4f81 100644 --- a/KomplexHubPlugin/paginators/featuredvideospaginator.h +++ b/KomplexHubPlugin/paginators/featuredvideospaginator.h @@ -36,11 +36,8 @@ class KOMPLEX_EXPORT FeaturedVideosPaginator : public VideoPaginator public: explicit FeaturedVideosPaginator(QObject *parent = nullptr) : VideoPaginator(parent) { - setUri( - QString::fromUtf8(KOMPLEX_ENDPOINT_VIDEOS_FEATURED) - ); - - controller()->setWindowSize(20); + setUri(KOMPLEX_ENDPOINT_VIDEOS_FEATURED); + controller()->setWindowSize(32); } }; diff --git a/KomplexHubPlugin/paginators/imagesearchpaginator.h b/KomplexHubPlugin/paginators/imagesearchpaginator.h index 4c17740..7421b60 100644 --- a/KomplexHubPlugin/paginators/imagesearchpaginator.h +++ b/KomplexHubPlugin/paginators/imagesearchpaginator.h @@ -38,10 +38,7 @@ class KOMPLEX_EXPORT ImageSearchPaginator : public ImagePaginator public: explicit ImageSearchPaginator(QObject *parent = nullptr) : ImagePaginator(parent) { - setUri( - QString::fromUtf8(KOMPLEX_ENDPOINT_IMAGES_SEARCH) - ); - + setUri(KOMPLEX_ENDPOINT_IMAGES_SEARCH); setQueryable(true); } }; diff --git a/KomplexHubPlugin/paginators/newestpackspaginator.h b/KomplexHubPlugin/paginators/newestpackspaginator.h index 7c63ab6..5222365 100644 --- a/KomplexHubPlugin/paginators/newestpackspaginator.h +++ b/KomplexHubPlugin/paginators/newestpackspaginator.h @@ -36,10 +36,7 @@ class KOMPLEX_EXPORT NewestPacksPaginator : public WallpaperPaginator public: explicit NewestPacksPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent) { - setUri( - QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_NEWEST) - ); - + setUri(KOMPLEX_ENDPOINT_PACKS_NEWEST); controller()->setWindowSize(20); } }; diff --git a/KomplexHubPlugin/paginators/packsearchpaginator.h b/KomplexHubPlugin/paginators/packsearchpaginator.h index 6b3ada0..7d00b84 100644 --- a/KomplexHubPlugin/paginators/packsearchpaginator.h +++ b/KomplexHubPlugin/paginators/packsearchpaginator.h @@ -36,10 +36,7 @@ class KOMPLEX_EXPORT PackSearchPaginator : public WallpaperPaginator public: explicit PackSearchPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent) { - setUri( - QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_SEARCH) - ); - + setUri(KOMPLEX_ENDPOINT_PACKS_SEARCH); setQueryable(true); } }; diff --git a/KomplexHubPlugin/paginators/videosearchpaginator.h b/KomplexHubPlugin/paginators/videosearchpaginator.h index 32e1f43..7b252b9 100644 --- a/KomplexHubPlugin/paginators/videosearchpaginator.h +++ b/KomplexHubPlugin/paginators/videosearchpaginator.h @@ -36,10 +36,7 @@ class KOMPLEX_EXPORT VideoSearchPaginator : public VideoPaginator public: explicit VideoSearchPaginator(QObject *parent = nullptr) : VideoPaginator(parent) { - setUri( - QString::fromUtf8(KOMPLEX_ENDPOINT_VIDEOS_SEARCH) - ); - + setUri(KOMPLEX_ENDPOINT_VIDEOS_SEARCH); setQueryable(true); } };