diff options
| author | Aimee Linden <aimee@lindenlab.com> | 2010-06-21 13:18:04 +0100 | 
|---|---|---|
| committer | Aimee Linden <aimee@lindenlab.com> | 2010-06-21 13:18:04 +0100 | 
| commit | 0622cd9e3605e0b18dd660a1b5cfe86581d693c5 (patch) | |
| tree | 166f55478717ba28a2aabe346d13d2f7f38474fc | |
| parent | ff2c3873817c6ab701483dbdda656af5e038f0a6 (diff) | |
DEV-36441 FIXED Minor coding standards fix-up to previous fix for VWR-14765.
| -rw-r--r-- | indra/newview/llpanellogin.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp index 1cb0f4601b..144839b554 100644 --- a/indra/newview/llpanellogin.cpp +++ b/indra/newview/llpanellogin.cpp @@ -1153,7 +1153,10 @@ void LLPanelLogin::onSelectServer(LLUICtrl*, void*)  void LLPanelLogin::onServerComboLostFocus(LLFocusableElement* fe)  { -	if (!sInstance) return; +	if (!sInstance) +	{ +		return; +	}  	LLComboBox* combo = sInstance->getChild<LLComboBox>("server_combo");  	if(fe == combo) | 
