summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorandreykproductengine <none@none>2016-09-20 20:42:57 +0300
committerandreykproductengine <none@none>2016-09-20 20:42:57 +0300
commit6e3acac4f0b47ee721f2e577484906de0240d76d (patch)
tree97ca89af643a54c6e5bf23b43eba60a965021b49 /indra/newview
parentc9cfa897d9a781b6781915d250bb8886c206cd3f (diff)
MAINT-6735 brackets fix
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llnotificationofferhandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llnotificationofferhandler.cpp b/indra/newview/llnotificationofferhandler.cpp
index c29fdecefa..63ab88da42 100644
--- a/indra/newview/llnotificationofferhandler.cpp
+++ b/indra/newview/llnotificationofferhandler.cpp
@@ -100,11 +100,11 @@ bool LLOfferHandler::processNotification(const LLNotificationPtr& notification)
{
//Will not play a notification sound for inventory and teleport offer based upon chat preference
bool playSound = (notification->getName() == "UserGiveItem"
- && gSavedSettings.getBOOL("PlaySoundInventoryOffer")
+ && gSavedSettings.getBOOL("PlaySoundInventoryOffer"))
|| ((notification->getName() == "TeleportOffered"
|| notification->getName() == "TeleportOffered_MaturityExceeded"
|| notification->getName() == "TeleportOffered_MaturityBlocked")
- && gSavedSettings.getBOOL("PlaySoundTeleportOffer")));
+ && gSavedSettings.getBOOL("PlaySoundTeleportOffer"));
if (playSound)
{