diff options
-rw-r--r-- | linden/indra/newview/llfloaterinspect.cpp | 2 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterinspect.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloaterinspect.cpp b/linden/indra/newview/llfloaterinspect.cpp index a8a6bb5..e22b8f6 100644 --- a/linden/indra/newview/llfloaterinspect.cpp +++ b/linden/indra/newview/llfloaterinspect.cpp | |||
@@ -320,7 +320,7 @@ void LLFloaterInspect::refresh() | |||
320 | // inventory silliness | 320 | // inventory silliness |
321 | S32 scripts = 0; | 321 | S32 scripts = 0; |
322 | S32 total_inv = 0; | 322 | S32 total_inv = 0; |
323 | std::map<LLUUID, std::pair<S32, S32>>::iterator itr = mInventoryNums.find(obj->getObject()->getID()); | 323 | std::map<LLUUID, std::pair<S32, S32> >::iterator itr = mInventoryNums.find(obj->getObject()->getID()); |
324 | if (itr != mInventoryNums.end()) | 324 | if (itr != mInventoryNums.end()) |
325 | { | 325 | { |
326 | scripts = itr->second.first; | 326 | scripts = itr->second.first; |
diff --git a/linden/indra/newview/llfloaterinspect.h b/linden/indra/newview/llfloaterinspect.h index 959eea6..ae443f9 100644 --- a/linden/indra/newview/llfloaterinspect.h +++ b/linden/indra/newview/llfloaterinspect.h | |||
@@ -75,7 +75,7 @@ private: | |||
75 | static LLFloaterInspect* sInstance; | 75 | static LLFloaterInspect* sInstance; |
76 | 76 | ||
77 | LLSafeHandle<LLObjectSelection> mObjectSelection; | 77 | LLSafeHandle<LLObjectSelection> mObjectSelection; |
78 | std::map<LLUUID, std::pair<S32, S32>> mInventoryNums; //<scripts, total> | 78 | std::map<LLUUID, std::pair<S32, S32> > mInventoryNums; //<scripts, total> |
79 | std::vector<LLUUID> mQueue; | 79 | std::vector<LLUUID> mQueue; |
80 | }; | 80 | }; |
81 | 81 | ||