diff options
| author | Richard Linden <none@none> | 2011-09-27 09:41:09 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2011-09-27 09:41:09 -0700 | 
| commit | f0095ddd23b46932ba0aef6bf62918c816ebb09c (patch) | |
| tree | 3d89b3dff1305ab2f15a83eab360bc56234314dc | |
| parent | b7cf5ff947161d0b7e42a9ed8fe10741bb7af100 (diff) | |
| parent | c5d930b280c71dfd6ba2f63960c91895083ecc19 (diff) | |
Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience-fui
| -rw-r--r-- | indra/llui/llpanel.h | 3 | ||||
| -rw-r--r-- | indra/llui/lltoolbar.cpp | 11 | ||||
| -rw-r--r-- | indra/llui/llview.h | 6 | 
3 files changed, 8 insertions, 12 deletions
| diff --git a/indra/llui/llpanel.h b/indra/llui/llpanel.h index 790025cb2d..ab1c87caff 100644 --- a/indra/llui/llpanel.h +++ b/indra/llui/llpanel.h @@ -96,9 +96,6 @@ public:  		Params();  	}; -	// valid children for LLPanel are stored in this registry -	typedef LLDefaultChildRegistry child_registry_t; -  protected:  	friend class LLUICtrlFactory;  	// RN: for some reason you can't just use LLUICtrlFactory::getDefaultParams as a default argument in VC8 diff --git a/indra/llui/lltoolbar.cpp b/indra/llui/lltoolbar.cpp index 2fb9f249d4..0c3052b1ab 100644 --- a/indra/llui/lltoolbar.cpp +++ b/indra/llui/lltoolbar.cpp @@ -30,6 +30,7 @@  #include <boost/foreach.hpp>  #include "lltoolbar.h" +#include "llcommandmanager.h"  #include "llmenugl.h"  #include "lltrans.h" @@ -368,8 +369,8 @@ void LLToolBar::updateLayoutAsNeeded()  	std::vector<LLToolBarButton*> buttons_in_row; -	BOOST_FOREACH(LLToolBarButton* button, mButtons) -	{ +		BOOST_FOREACH(LLToolBarButton* button, mButtons) +		{  		button->reshape(mMinButtonWidth, mButtonHeight);  		button->autoResize(); @@ -402,8 +403,8 @@ void LLToolBar::updateLayoutAsNeeded()  			max_row_girth = 0;  	} -	LLRect button_rect; -	if (orientation == LLLayoutStack::HORIZONTAL) +		LLRect button_rect; +		if (orientation == LLLayoutStack::HORIZONTAL)  	{  			button_rect.setLeftTopAndSize(cur_start, panel_rect.mTop - cur_row, button_clamped_width, button->getRect().getHeight());  		} @@ -448,7 +449,7 @@ void LLToolBar::updateLayoutAsNeeded()  		reshape(total_girth, getRect().getHeight());  		mButtonPanel->reshape(total_girth, max_row_length); -	} +		}  	// re-center toolbar buttons  	mCenteringStack->updateLayout(); diff --git a/indra/llui/llview.h b/indra/llui/llview.h index 7a1b2e4ba0..9039366e7e 100644 --- a/indra/llui/llview.h +++ b/indra/llui/llview.h @@ -95,9 +95,6 @@ private:  	static std::vector<LLViewDrawContext*> sDrawContextStack;  }; -class LLViewWidgetRegistry : public LLChildRegistry<LLViewWidgetRegistry> -{}; -  class LLView : public LLMouseHandler, public LLMortician, public LLFocusableElement  {  public: @@ -150,7 +147,8 @@ public:  		Params();  	}; -	typedef LLViewWidgetRegistry child_registry_t; +	// most widgets are valid children of LLView +	typedef LLDefaultChildRegistry child_registry_t;  	void initFromParams(const LLView::Params&); | 
