Adjust virtual / non virtual for some methods
This commit is contained in:
parent
6fa8e1ae9e
commit
4547000491
1 changed files with 3 additions and 4 deletions
|
@ -111,7 +111,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* @brief Return the api type of the searvice.
|
* @brief Return the api type of the searvice.
|
||||||
**/
|
**/
|
||||||
int apiType() const;
|
virtual Danbooru::ApiType apiType() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Return the blacklisted tags for the service
|
* @brief Return the blacklisted tags for the service
|
||||||
|
@ -152,15 +152,14 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Move to the next pool page and retrieve new posts associated to the pool.
|
* @brief Move to the next pool page and retrieve new posts associated to the pool.
|
||||||
* The default implementation does nothing.
|
|
||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
Q_INVOKABLE virtual void nextPoolPage();
|
Q_INVOKABLE void nextPoolPage();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return A QStringList containing the currently-selected tags
|
* @return A QStringList containing the currently-selected tags
|
||||||
**/
|
**/
|
||||||
QStringList postTags();
|
QStringList postTags() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Resets the service to the default state, clearing the page counters.
|
* @brief Resets the service to the default state, clearing the page counters.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue