diff options
author | McCabe Maxsted | 2010-09-18 03:35:47 -0700 |
---|---|---|
committer | McCabe Maxsted | 2010-09-18 03:35:47 -0700 |
commit | 282885ee97004e5ba81cebb2c6ead68aad9e3743 (patch) | |
tree | 4f028ea807ecd08f506499d0affa507ce9a26724 /linden/indra/newview/llchatbar.cpp | |
parent | Default upload animation preview to own avatar (diff) | |
download | meta-impy-282885ee97004e5ba81cebb2c6ead68aad9e3743.zip meta-impy-282885ee97004e5ba81cebb2c6ead68aad9e3743.tar.gz meta-impy-282885ee97004e5ba81cebb2c6ead68aad9e3743.tar.bz2 meta-impy-282885ee97004e5ba81cebb2c6ead68aad9e3743.tar.xz |
Fixed windows compile error on autocomplete
Diffstat (limited to 'linden/indra/newview/llchatbar.cpp')
-rw-r--r-- | linden/indra/newview/llchatbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llchatbar.cpp b/linden/indra/newview/llchatbar.cpp index eaa8cc8..0a4ca34 100644 --- a/linden/indra/newview/llchatbar.cpp +++ b/linden/indra/newview/llchatbar.cpp | |||
@@ -295,7 +295,7 @@ BOOL LLChatBar::handleKeyHere( KEY key, MASK mask ) | |||
295 | mCompletionHolder.names.push_back(agent_name); | 295 | mCompletionHolder.names.push_back(agent_name); |
296 | } | 296 | } |
297 | 297 | ||
298 | if (mCompletionHolder.current_index >= mCompletionHolder.names.size() || mCompletionHolder.match != mCompletionHolder.last_match) | 298 | if (mCompletionHolder.current_index >= (S32)mCompletionHolder.names.size() || mCompletionHolder.match != mCompletionHolder.last_match) |
299 | { | 299 | { |
300 | mCompletionHolder.current_index = 0; | 300 | mCompletionHolder.current_index = 0; |
301 | mCompletionHolder.last_match = mCompletionHolder.match; | 301 | mCompletionHolder.last_match = mCompletionHolder.match; |