diff --git a/indra/newview/character/avatar_lad.xml b/indra/newview/character/avatar_lad.xml index d90ed5a75..33a184077 100755 --- a/indra/newview/character/avatar_lad.xml +++ b/indra/newview/character/avatar_lad.xml @@ -1,4 +1,4 @@ - + @@ -6609,7 +6609,7 @@ + local_texture="head_tattoo" /> @@ -6634,7 +6634,7 @@ - + getBaseFileName(file_name, true); floaterp->add(file); - if(floaterp->getChild("create_pretend_item")->get()) + /*if(floaterp->getChild("create_pretend_item")->get()) { LLLocalInventory::addItem(file.mName, (int)file.mType, file.mID, true); - } + }*/ } } // static diff --git a/indra/newview/llinventorybridge.h b/indra/newview/llinventorybridge.h index e789a3b7b..8f9226a8f 100755 --- a/indra/newview/llinventorybridge.h +++ b/indra/newview/llinventorybridge.h @@ -129,41 +129,6 @@ public: } }; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Class LLInventoryPanelObserver // diff --git a/indra/newview/llpreviewgesture.h b/indra/newview/llpreviewgesture.h index a51406bc1..c245c0e8d 100644 --- a/indra/newview/llpreviewgesture.h +++ b/indra/newview/llpreviewgesture.h @@ -168,7 +168,6 @@ protected: LLCheckBoxCtrl* mActiveCheck; LLButton* mSaveBtn; - LLButton* mPreviewBtn; LLMultiGesture* mPreviewGesture; diff --git a/indra/newview/lltexturectrl.cpp b/indra/newview/lltexturectrl.cpp index a18d7d989..9deaa58dd 100644 --- a/indra/newview/lltexturectrl.cpp +++ b/indra/newview/lltexturectrl.cpp @@ -1480,7 +1480,7 @@ BOOL LLTextureCtrl::allowDrop(LLInventoryItem* item) return TRUE; } } - + else { return FALSE; } diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp index d0e0f1b7c..8fcbb88b1 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -329,15 +329,16 @@ BOOL LLToolPie::pickAndShowMenu(BOOL always_show) gMenuHolder->setParcelSelection(selection); gPieLand->show(x, y, mPieMouseButtonDown); + // if(!gSavedSettings.getBOOL("DisablePointAtAndBeam")) { - // - // VEFFECT: ShowPie + // + // VEFFECT: ShowPie LLHUDEffectSpiral *effectp = (LLHUDEffectSpiral *)LLHUDManager::getInstance()->createViewerEffect(LLHUDObject::LL_HUD_EFFECT_SPHERE, TRUE); effectp->setPositionGlobal(mPick.mPosGlobal); effectp->setColor(LLColor4U(gAgent.getEffectColor())); effectp->setDuration(0.25f); - // + // } // } @@ -407,6 +408,7 @@ BOOL LLToolPie::pickAndShowMenu(BOOL always_show) gPieObject->show(x, y, mPieMouseButtonDown); + // if(!gSavedSettings.getBOOL("DisablePointAtAndBeam")) { // diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 94a5bb653..c53402a37 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -9156,7 +9156,7 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys ) if( !param ) { - llwarns << "Number of params in AvatarAppearance msg does not match number of params in avatar xml file." << llendl; + llwarns << "Number of params in AvatarAppearance msg does not match number of params in avatar xml file for " << getFullname() << " (Too few)." << llendl; return; } @@ -9206,7 +9206,10 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys ) } if( param ) { - llwarns << "Number of params in AvatarAppearance msg does not match number of params in avatar xml file." << llendl; + if (param->getName() == "tattoo_red") + llinfos << "No tattoo tinting for " << getFullname() << "." << llendl; + else + llwarns << "Number of params in AvatarAppearance msg does not match number of params in avatar xml file for " << getFullname() << " (Prematurely reached end of list at " << param->getName() << ")." << llendl; return; }