diff options
author | Merov Linden <merov@lindenlab.com> | 2013-01-16 14:53:23 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2013-01-16 14:53:23 -0800 |
commit | f43f51406b024ed2423e068114ae818bac5c6df5 (patch) | |
tree | a12a37380c62a7c84b7bfff704aba6f356b5ae57 /indra/newview/llpanelblockedlist.cpp | |
parent | fd0cae39f38673d69448e90971e2369e0b81c2fe (diff) |
CHUI-683 : Default sort order for Blocked was wrong, unrecognized value was not tested.
Diffstat (limited to 'indra/newview/llpanelblockedlist.cpp')
-rw-r--r-- | indra/newview/llpanelblockedlist.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llpanelblockedlist.cpp b/indra/newview/llpanelblockedlist.cpp index df1ccdd9fc..115114bb53 100644 --- a/indra/newview/llpanelblockedlist.cpp +++ b/indra/newview/llpanelblockedlist.cpp @@ -89,6 +89,9 @@ BOOL LLPanelBlockedList::postBuild() case E_SORT_BY_TYPE: mBlockedList->sortByType(); break; + default: + llwarns << "Unrecognized sort order for blocked list" << llendl; + break; } // Use the context menu of the Block list for the Block tab gear menu. |