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