diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-03-29 11:10:54 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-03-29 11:10:54 -0400 |
commit | b2a667b7222640a384cb23763b32f8746b0c8cd8 (patch) | |
tree | e284ec0045b8f74c69da657f30efe84ff83b4c8b /indra/newview/llviewerinventory.cpp | |
parent | 4ff53b90660477f54ba3c8ca9a9718fe0d16a1dd (diff) |
For EXT-4666: changed LLGestureManager to LLGestureMgr throughout
Diffstat (limited to 'indra/newview/llviewerinventory.cpp')
-rw-r--r-- | indra/newview/llviewerinventory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp index 063e49fc57..a2c67abf05 100644 --- a/indra/newview/llviewerinventory.cpp +++ b/indra/newview/llviewerinventory.cpp @@ -827,7 +827,7 @@ void ActivateGestureCallback::fire(const LLUUID& inv_item) if (inv_item.isNull()) return; - LLGestureManager::instance().activateGesture(inv_item); + LLGestureMgr::instance().activateGesture(inv_item); } void CreateGestureCallback::fire(const LLUUID& inv_item) @@ -835,7 +835,7 @@ void CreateGestureCallback::fire(const LLUUID& inv_item) if (inv_item.isNull()) return; - LLGestureManager::instance().activateGesture(inv_item); + LLGestureMgr::instance().activateGesture(inv_item); LLViewerInventoryItem* item = gInventory.getItem(inv_item); if (!item) return; |