From eac7d298dc9e96b296024c888914429ae18933a2 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Thu, 6 Jun 2019 08:21:22 +1200 Subject: [PATCH] Change "privacy bubble" to "privacy shield" --- .../script-engine/src/UsersScriptingInterface.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libraries/script-engine/src/UsersScriptingInterface.h b/libraries/script-engine/src/UsersScriptingInterface.h index b9857fbd86..3b0666481a 100644 --- a/libraries/script-engine/src/UsersScriptingInterface.h +++ b/libraries/script-engine/src/UsersScriptingInterface.h @@ -162,27 +162,27 @@ public slots: bool getCanKick(); /**jsdoc - * Toggles the state of the privacy bubble. + * Toggles the state of the privacy shield. * @function Users.toggleIgnoreRadius */ void toggleIgnoreRadius(); /**jsdoc - * Enables the privacy bubble. + * Enables the privacy shield. * @function Users.enableIgnoreRadius */ void enableIgnoreRadius(); /**jsdoc - * Disables the privacy bubble. + * Disables the privacy shield. * @function Users.disableIgnoreRadius */ void disableIgnoreRadius(); /**jsdoc - * Gets the status of the privacy bubble. + * Gets the status of the privacy shield. * @function Users.getIgnoreRadiusEnabled - * @returns {boolean} true if the privacy bubble is enabled, false if it is disabled. + * @returns {boolean} true if the privacy shield is enabled, false if it is disabled. */ bool getIgnoreRadiusEnabled(); @@ -197,15 +197,15 @@ signals: void canKickChanged(bool canKick); /**jsdoc - * Triggered when the privacy bubble status changes. + * Triggered when the privacy shield status changes. * @function Users.ignoreRadiusEnabledChanged - * @param {boolean} isEnabled - true if the privacy bubble is enabled, false if it isn't. + * @param {boolean} isEnabled - true if the privacy shield is enabled, false if it isn't. * @returns {Signal} */ void ignoreRadiusEnabledChanged(bool isEnabled); /**jsdoc - * Triggered when another user enters the privacy bubble. + * Triggered when another user enters the privacy shield. * @function Users.enteredIgnoreRadius * @returns {Signal} */