Miscellaneous fixes

This commit is contained in:
David Rowe 2018-01-11 15:53:45 +13:00
parent 7ba42f0e76
commit a543d90090

View file

@ -301,7 +301,7 @@ public slots:
/**jsdoc /**jsdoc
* Get Interface's build number. * Get Interface's build number.
* @function Window.checkVersion * @function Window.checkVersion
* @returns {string} - Interface's build number. * @returns {string} Interface's build number.
*/ */
QString checkVersion(); QString checkVersion();
@ -327,7 +327,7 @@ public slots:
* full resolution is used (window dimensions in desktop mode; HMD display dimensions in HMD mode), otherwise one of the * full resolution is used (window dimensions in desktop mode; HMD display dimensions in HMD mode), otherwise one of the
* dimensions is adjusted in order to match the aspect ratio. * dimensions is adjusted in order to match the aspect ratio.
* @example <caption>Using the snapshot function and signals.</caption> * @example <caption>Using the snapshot function and signals.</caption>
* function onStillSnapshottaken(path, notify) { * function onStillSnapshotTaken(path, notify) {
* print("Still snapshot taken: " + path); * print("Still snapshot taken: " + path);
* print("Notify: " + notify); * print("Notify: " + notify);
* } * }
@ -340,7 +340,7 @@ public slots:
* print("Animated snapshot taken: " + animatedPath); * print("Animated snapshot taken: " + animatedPath);
* } * }
* *
* Window.stillSnapshotTaken.connect(onStillSnapshottaken); * Window.stillSnapshotTaken.connect(onStillSnapshotTaken);
* Window.processingGifStarted.connect(onProcessingGifStarted); * Window.processingGifStarted.connect(onProcessingGifStarted);
* Window.processingGifCompleted.connect(onProcessingGifCompleted); * Window.processingGifCompleted.connect(onProcessingGifCompleted);
* *