diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-11-25 16:03:52 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-11-25 16:03:52 -0500 |
commit | fd2d81223697bad850b979f308c271ca370eccd3 (patch) | |
tree | 7d81834b1a26f6f74e8dcaf45475ba1865bf9f7e /indra/newview/llinventorybridge.cpp | |
parent | 8f4c4db90fdafc86efb64318e611d00aae662ab1 (diff) |
SH-4549 FIX - code cleanup
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rwxr-xr-x | indra/newview/llinventorybridge.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 74837bac37..1f942f5f4b 100755 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -2984,39 +2984,6 @@ std::string LLFolderBridge::getLabelSuffix() const : LLStringUtil::null; } -class ScrollOnRenameObserver: public LLInventoryObserver -{ -public: - LLFolderView *mView; - LLUUID mUUID; - - ScrollOnRenameObserver(const LLUUID& uuid, LLFolderView *view): - mUUID(uuid), - mView(view) - { - } - void changed(U32 mask) - { - if (mask & LLInventoryObserver::LABEL) - { - // TODO - check for whether this is the item we're waiting for a rename of - const uuid_set_t& changed_item_ids = gInventory.getChangedIDs(); - for (uuid_set_t::const_iterator it = changed_item_ids.begin(); it != changed_item_ids.end(); ++it) - { - const LLUUID& id = *it; - if (id == mUUID) - { - mView->scrollToShowSelection(); - - gInventory.removeObserver(this); - delete this; - return; - } - } - } - } -}; - BOOL LLFolderBridge::renameItem(const std::string& new_name) { |