diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llinventorymodel.cpp | 16 | ||||
| -rw-r--r-- | indra/newview/llinventorypanel.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_bottomtray.xml | 11 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_nearby_chat_bar.xml | 2 | 
4 files changed, 22 insertions, 11 deletions
| diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index baf34b42ff..b41695fd34 100644 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -1823,17 +1823,25 @@ void LLInventoryModel::addCategory(LLViewerInventoryCategory* category)  void LLInventoryModel::addItem(LLViewerInventoryItem* item)  {  	//llinfos << "LLInventoryModel::addItem()" << llendl; + +	 +	// This can happen if assettype enums change.  This can be a backwards compatibility issue  +	// in some viewer prototypes prior to when the AT_LINK enum changed from 23 to 24. +	if ((item->getType() == LLAssetType::AT_NONE) +		|| LLAssetType::lookup(item->getType()) == LLAssetType::badLookup()) +	{ +		llwarns << "Got bad asset type for item ( name: " << item->getName() << " type: " << item->getType() << " inv-type: " << item->getInventoryType() << " ), ignoring." << llendl; +		return; +	}  	if(item)  	{  		// This condition means that we tried to add a link without the baseobj being in memory.  		// The item will show up as a broken link.  		if (item->getIsBrokenLink())  		{ -			llwarns << "Add link item without baseobj present ( name: " << item->getName() << " itemID: " << item->getUUID() << " assetID: " << item->getAssetUUID() << " )  parent: " << item->getParentUUID() << llendl; -//			llassert_always(FALSE); // DO NOT MERGE THIS IN.  This is an AVP debugging line.  If this line triggers, it means that you just loaded in a broken link.  Unless that happens because you actually deleted a baseobj without deleting the link, it's indicative of a serious problem (likely with your inventory) and should be diagnosed. +			llinfos << "Adding broken link ( name: " << item->getName() << " itemID: " << item->getUUID() << " assetID: " << item->getAssetUUID() << " )  parent: " << item->getParentUUID() << llendl;  		}  		mItemMap[item->getUUID()] = item; -		//mInventory[item->getUUID()] = item;  	}  } @@ -2175,7 +2183,7 @@ bool LLInventoryModel::loadSkeleton(  						// This can happen if the linked object's baseobj is removed from the cache but the linked object is still in the cache.  						if (item->getIsBrokenLink())  						{ -							llinfos << "Attempted to cached link item without baseobj present ( itemID: " << item->getUUID() << " assetID: " << item->getAssetUUID() << " ) " << llendl; +							llinfos << "Attempted to add cached link item without baseobj present ( name: " << item->getName() << " itemID: " << item->getUUID() << " assetID: " << item->getAssetUUID() << " ).  Ignoring and invalidating " << cat->getName() << " . " << llendl;  							invalid_categories.insert(cit->second);  							continue;  						} diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 7f69ce9641..9a71e53441 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -371,7 +371,7 @@ void LLInventoryPanel::modelChanged(U32 mask)  						// this object was probably moved, check its parent
  						if ((mask & LLInventoryObserver::STRUCTURE) != LLInventoryObserver::STRUCTURE)
  						{
 -							llwarns << *id_it << " is in model and in view, but STRUCTURE flag not set" << llendl;
 +							llwarns << *id_it << " is in model and in view, but STRUCTURE flag not set" << " for model (Name :" << model_item->getName() << " )" << llendl;
  						}
  						LLFolderViewFolder* new_parent = (LLFolderViewFolder*)mFolders->getItemByID(model_item->getParentUUID());
 @@ -472,7 +472,7 @@ void LLInventoryPanel::buildNewViews(const LLUUID& id)  			if (objectp->getType() <= LLAssetType::AT_NONE ||
  				objectp->getType() >= LLAssetType::AT_COUNT)
  			{
 -				lldebugs << "LLInventoryPanel::buildNewViews called with invalid objectp->mType : " << 
 +				llwarns << "LLInventoryPanel::buildNewViews called with invalid objectp->mType : " << 
  					((S32) objectp->getType()) << " name " << objectp->getName() << " UUID " << objectp->getUUID() << llendl;
  				return;
  			}
 diff --git a/indra/newview/skins/default/xui/en/panel_bottomtray.xml b/indra/newview/skins/default/xui/en/panel_bottomtray.xml index f833e0a1cb..c5e129cf2f 100644 --- a/indra/newview/skins/default/xui/en/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/en/panel_bottomtray.xml @@ -69,7 +69,9 @@            left="0"            name="talk"            top="3" -          width="100" /> +          width="100" +          speak_button.tool_tip="Turns microphone on/off" +          show_button.tool_tip="Shows/hides voice control panel" />          </layout_panel>  		 <icon           auto_resize="false" @@ -102,7 +104,8 @@            left="0"            top="3"           use_ellipses="true" -          width="80" /> +          width="80" +          tool_tip="Shows/hides gestures"/>          </layout_panel>  		 <icon           auto_resize="false" @@ -133,7 +136,7 @@               label="Move"               layout="topleft"               name="movement_btn" -             tool_tip="Show/hide movement controls" +             tool_tip="Shows/hides movement controls"               top="3"               width="80">                  <button.init_callback @@ -171,7 +174,7 @@               label="View"               layout="topleft"               left="0" -             tool_tip="Show/hide camera controls" +             tool_tip="Shows/hides camera controls"               top="3"               name="camera_btn"               width="80"> diff --git a/indra/newview/skins/default/xui/en/panel_nearby_chat_bar.xml b/indra/newview/skins/default/xui/en/panel_nearby_chat_bar.xml index 555fedb1ff..7128c20038 100644 --- a/indra/newview/skins/default/xui/en/panel_nearby_chat_bar.xml +++ b/indra/newview/skins/default/xui/en/panel_nearby_chat_bar.xml @@ -50,7 +50,7 @@       label="Log"       height="23"       name="show_nearby_chat" -     tool_tip="Show/hide nearby chat log"> +     tool_tip="Shows/hides nearby chat log">          <button.init_callback             function="Button.SetDockableFloaterToggle"             parameter="nearby_chat" /> | 
