diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 13:09:25 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 13:09:25 -0800 |
commit | 05260ba76d020072e5b08bd07fa77408aee4442e (patch) | |
tree | c083119c5ec90b9ee29353da5f7ebe9c06f0b94a /indra/llui | |
parent | 668e72e2901ebf377661572fd30954d41e0e7c15 (diff) |
follow-up fix
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llmenugl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index ead28426cd..ceb1e9820e 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -1875,7 +1875,7 @@ void LLMenuGL::scrollItemsDown() item_list_t::iterator next_item_iter; - if (cur_item_iterator != mItems.end()) + if (cur_item_iter != mItems.end()) { for (next_item_iter = ++cur_item_iter; next_item_iter != mItems.end(); next_item_iter++) { |