summaryrefslogtreecommitdiff
path: root/indra/llui/llfloater.cpp
diff options
context:
space:
mode:
authorSimon Linden <simon@lindenlab.com>2014-02-26 23:52:34 +0000
committerSimon Linden <simon@lindenlab.com>2014-02-26 23:52:34 +0000
commit0a46023db52cce799523e69de433b6b781145ffc (patch)
tree0ff2fde01a5c7c51dfbbdc04b97c276e1ad87338 /indra/llui/llfloater.cpp
parent483ad8dc558156b65bf1e0a301fc18040bb038c3 (diff)
Fix linux build - make default check in switch statement
Diffstat (limited to 'indra/llui/llfloater.cpp')
-rwxr-xr-xindra/llui/llfloater.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp
index 8e7aa7b22b..2b93237de6 100755
--- a/indra/llui/llfloater.cpp
+++ b/indra/llui/llfloater.cpp
@@ -3053,6 +3053,9 @@ void LLFloaterView::setToolbarRect(LLToolBarEnums::EToolBarLocation tb, const LL
case LLToolBarEnums::TOOLBAR_RIGHT:
mToolbarRightRect = toolbar_rect;
break;
+ default:
+ llwarns << "setToolbarRect() passed odd toolbar number " << (S32) tb << llendl;
+ break;
}
}