diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-11-12 15:10:06 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-11-12 15:10:06 -0500 |
commit | 0b104e2a418dc794ce7230ab30f472d1787cd9c4 (patch) | |
tree | c7b12e83f7be49a323b8483f809e5090a9a5d95b /indra/newview/llinventorypanel.cpp | |
parent | 7a45dec2d540581ef080386e4a967befd22b6adb (diff) |
LLAppearanceManager cleanup - turning into proper singleton
--HG--
branch : avatar-pipeline
Diffstat (limited to 'indra/newview/llinventorypanel.cpp')
-rw-r--r-- | indra/newview/llinventorypanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index dfd4af5c28..9ee2defc01 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -694,7 +694,7 @@ void LLInventoryPanel::setSelection(const LLUUID& obj_id, BOOL take_keyboard_foc {
// Don't select objects in COF (e.g. to prevent refocus when items are worn).
const LLInventoryObject *obj = gInventory.getObject(obj_id);
- if (obj && obj->getParentUUID() == LLAppearanceManager::getCOF())
+ if (obj && obj->getParentUUID() == LLAppearanceManager::instance().getCOF())
{
return;
}
|