summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-01-09 20:20:32 -0800
committerMerov Linden <merov@lindenlab.com>2013-01-09 20:20:32 -0800
commitbe3cfd872be89f30012d66a4b64071e4fe2568cf (patch)
tree18a101ec6f28cb094b7c30389430a907c3123d2b /indra/newview
parent830972204912ccb212da3550f31820a6cf343779 (diff)
CHUI-649 : WIP : Cleanup code to make it readable
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llinventorybridge.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index cb6290368c..837870ae27 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -511,8 +511,10 @@ BOOL LLInvFVBridge::isClipboardPasteable() const
// Each item must be copyable to be pastable
LLItemBridge item_br(mInventoryPanel.get(), mRoot, item_id);
if (!item_br.isItemCopyable())
- return FALSE;
- }
+ {
+ return FALSE;
+ }
+ }
return TRUE;
}