summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorandreykproductengine <akleshchev@productengine.com>2017-03-22 18:41:51 +0200
committerandreykproductengine <akleshchev@productengine.com>2017-03-22 18:41:51 +0200
commit3e6aafb489dec10f695f5dd2e04395ff473cfc50 (patch)
tree31acebe54c6c44fb13bd70ed058d35dcf47371b5 /indra
parentae59476522c1d91074df53968b28da182c25381c (diff)
MAINT-6789 MAC build fix
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llblocklist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llblocklist.cpp b/indra/newview/llblocklist.cpp
index 54617169c8..1eab2d8e23 100644
--- a/indra/newview/llblocklist.cpp
+++ b/indra/newview/llblocklist.cpp
@@ -220,7 +220,7 @@ void LLBlockList::refresh()
else if(mActionType == REMOVE)
{
if ((mute.mID.notNull() && selected.isUUID() && selected.asUUID() == mute.mID)
- || mute.mID.isNull() && selected.isString() && selected.asString() == mute.mName)
+ || (mute.mID.isNull() && selected.isString() && selected.asString() == mute.mName))
{
// we are going to remove currently selected item, so select next item and save the selection to restore it
if (!selectNextItemPair(false, true))