mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 14:08:51 +02:00
Add missing JSDoc
This commit is contained in:
parent
3e795d9b99
commit
d52bb66048
1 changed files with 21 additions and 0 deletions
|
@ -151,9 +151,30 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
|
|
||||||
|
/**jsdoc
|
||||||
|
* @function ScriptsModel.updateScriptsLocation
|
||||||
|
* @param {string} newPath - New path.
|
||||||
|
* @deprecated This method is deprecated and will be removed from the API.
|
||||||
|
*/
|
||||||
void updateScriptsLocation(const QString& newPath);
|
void updateScriptsLocation(const QString& newPath);
|
||||||
|
|
||||||
|
/**jsdoc
|
||||||
|
* @function ScriptsModel.downloadFinished
|
||||||
|
* @deprecated This method is deprecated and will be removed from the API.
|
||||||
|
*/
|
||||||
void downloadFinished();
|
void downloadFinished();
|
||||||
|
|
||||||
|
/**jsdoc
|
||||||
|
* @function ScriptsModel.reloadLocalFiles
|
||||||
|
* @deprecated This method is deprecated and will be removed from the API.
|
||||||
|
*/
|
||||||
void reloadLocalFiles();
|
void reloadLocalFiles();
|
||||||
|
|
||||||
|
/**jsdoc
|
||||||
|
* @function ScriptsModel.reloadDefaultFiles
|
||||||
|
* @deprecated This method is deprecated and will be removed from the API.
|
||||||
|
*/
|
||||||
void reloadDefaultFiles();
|
void reloadDefaultFiles();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
Loading…
Reference in a new issue