Add missing JSDoc

This commit is contained in:
David Rowe 2019-08-29 09:38:43 +12:00
parent 3e795d9b99
commit d52bb66048

View file

@ -151,9 +151,30 @@ public:
};
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);
/**jsdoc
* @function ScriptsModel.downloadFinished
* @deprecated This method is deprecated and will be removed from the API.
*/
void downloadFinished();
/**jsdoc
* @function ScriptsModel.reloadLocalFiles
* @deprecated This method is deprecated and will be removed from the API.
*/
void reloadLocalFiles();
/**jsdoc
* @function ScriptsModel.reloadDefaultFiles
* @deprecated This method is deprecated and will be removed from the API.
*/
void reloadDefaultFiles();
protected: