diff options
| author | Oz Linden <oz@lindenlab.com> | 2011-01-19 12:48:04 -0500 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2011-01-19 12:48:04 -0500 |
| commit | 061b04132ddf96dc55f962add8bf254bba54bd46 (patch) | |
| tree | fc9b743ae37b198cd8199a8fcf2a906e55a82c64 /indra/newview/llpanelobjectinventory.cpp | |
| parent | 6b7a7081c31607bada575dd2f0a226bc5d721fc2 (diff) | |
| parent | fde14fa53289d6bad4e3e91930115d7e249f71b8 (diff) | |
pull changes back from beta
Diffstat (limited to 'indra/newview/llpanelobjectinventory.cpp')
| -rw-r--r-- | indra/newview/llpanelobjectinventory.cpp | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/indra/newview/llpanelobjectinventory.cpp b/indra/newview/llpanelobjectinventory.cpp index 211b9cf4b1..0b6267c9e6 100644 --- a/indra/newview/llpanelobjectinventory.cpp +++ b/indra/newview/llpanelobjectinventory.cpp @@ -766,22 +766,12 @@ BOOL LLTaskCategoryBridge::startDrag(EDragAndDropType* type, LLUUID* id) const LLViewerObject* object = gObjectList.findObject(mPanel->getTaskUUID()); if(object) { - const LLInventoryItem *inv = dynamic_cast<LLInventoryItem*>(object->getInventoryObject(mUUID)); - if (inv) + const LLInventoryObject* cat = object->getInventoryObject(mUUID); + if ( (cat) && (move_inv_category_world_to_agent(mUUID, LLUUID::null, FALSE)) ) { - const LLPermissions& perm = inv->getPermissions(); - bool can_copy = gAgent.allowOperation(PERM_COPY, perm, - GP_OBJECT_MANIPULATE); - if((can_copy && perm.allowTransferTo(gAgent.getID())) - || object->permYouOwner()) -// || gAgent.isGodlike()) - - { - *type = LLViewerAssetType::lookupDragAndDropType(inv->getType()); - - *id = inv->getUUID(); - return TRUE; - } + *type = LLViewerAssetType::lookupDragAndDropType(cat->getType()); + *id = mUUID; + return TRUE; } } } |
