Added parent to constructor
This commit is contained in:
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT FeaturedCubemapsPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT FeaturedCubemapsPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit FeaturedCubemapsPaginator() : WallpaperPaginator()
|
explicit FeaturedCubemapsPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_CUBEMAPS_FEATURED)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_CUBEMAPS_FEATURED)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT FeaturedImagesPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT FeaturedImagesPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit FeaturedImagesPaginator() : WallpaperPaginator()
|
explicit FeaturedImagesPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_IMAGES_FEATURED)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_IMAGES_FEATURED)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT FeaturedPacksPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT FeaturedPacksPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit FeaturedPacksPaginator() : WallpaperPaginator()
|
explicit FeaturedPacksPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_FEATURED)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_FEATURED)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT FeaturedShadersPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT FeaturedShadersPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit FeaturedShadersPaginator() : WallpaperPaginator()
|
explicit FeaturedShadersPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_SHADERS_FEATURED)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_SHADERS_FEATURED)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT NewestCubemapsPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT NewestCubemapsPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit NewestCubemapsPaginator() : WallpaperPaginator()
|
explicit NewestCubemapsPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_CUBEMAPS_NEWEST)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_CUBEMAPS_NEWEST)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT NewestPacksPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT NewestPacksPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit NewestPacksPaginator() : WallpaperPaginator()
|
explicit NewestPacksPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_NEWEST)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_NEWEST)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT NewestShadersPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT NewestShadersPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit NewestShadersPaginator() : WallpaperPaginator()
|
explicit NewestShadersPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_SHADERS_NEWEST)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_SHADERS_NEWEST)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT SearchCubemapsPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT SearchCubemapsPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit SearchCubemapsPaginator() : WallpaperPaginator()
|
explicit SearchCubemapsPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_CUBEMAPS_SEARCH)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_CUBEMAPS_SEARCH)
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
class KOMPLEX_EXPORT SearchImagesPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT SearchImagesPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit SearchImagesPaginator() : WallpaperPaginator()
|
explicit SearchImagesPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_IMAGES_SEARCH)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_IMAGES_SEARCH)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT SearchPacksPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT SearchPacksPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit SearchPacksPaginator() : WallpaperPaginator()
|
explicit SearchPacksPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_SEARCH)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_PACKS_SEARCH)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT SearchShadersPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT SearchShadersPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit SearchShadersPaginator() : WallpaperPaginator()
|
explicit SearchShadersPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_SHADERS_SEARCH)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_SHADERS_SEARCH)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
class KOMPLEX_EXPORT SearchVideosPaginator : public WallpaperPaginator
|
class KOMPLEX_EXPORT SearchVideosPaginator : public WallpaperPaginator
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit SearchVideosPaginator() : WallpaperPaginator()
|
explicit SearchVideosPaginator(QObject *parent = nullptr) : WallpaperPaginator(parent)
|
||||||
{
|
{
|
||||||
setUri(
|
setUri(
|
||||||
QString::fromUtf8(KOMPLEX_ENDPOINT_VIDEOS_SEARCH)
|
QString::fromUtf8(KOMPLEX_ENDPOINT_VIDEOS_SEARCH)
|
||||||
|
|||||||
Reference in New Issue
Block a user