diff options
author | Merov Linden <merov@lindenlab.com> | 2013-01-09 20:20:32 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2013-01-09 20:20:32 -0800 |
commit | be3cfd872be89f30012d66a4b64071e4fe2568cf (patch) | |
tree | 18a101ec6f28cb094b7c30389430a907c3123d2b /indra/llui/llfolderviewitem.cpp | |
parent | 830972204912ccb212da3550f31820a6cf343779 (diff) |
CHUI-649 : WIP : Cleanup code to make it readable
Diffstat (limited to 'indra/llui/llfolderviewitem.cpp')
-rwxr-xr-x | indra/llui/llfolderviewitem.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp index 42e5a6debf..6d3b883b09 100755 --- a/indra/llui/llfolderviewitem.cpp +++ b/indra/llui/llfolderviewitem.cpp @@ -409,7 +409,7 @@ void LLFolderViewItem::selectItem(void) BOOL LLFolderViewItem::isMovable() { return getViewModelItem()->isItemMovable(); - } +} BOOL LLFolderViewItem::isRemovable() { @@ -438,19 +438,19 @@ BOOL LLFolderViewItem::remove() return FALSE; } return getViewModelItem()->removeItem(); - } +} // Build an appropriate context menu for the item. void LLFolderViewItem::buildContextMenu(LLMenuGL& menu, U32 flags) { getViewModelItem()->buildContextMenu(menu, flags); - } +} void LLFolderViewItem::openItem( void ) { if (mAllowOpen) { - getViewModelItem()->openItem(); + getViewModelItem()->openItem(); } } |