aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llmultisliderctrl.cpp
diff options
context:
space:
mode:
authorMm Alder2010-01-03 15:02:59 -0500
committerMm Alder2010-01-03 15:02:59 -0500
commit9cbad86ad87780232b14e1d0bd0b6da81665e6de (patch)
treebcbd691dbb9f133bf28528ef5c4e2247a982f167 /linden/indra/llui/llmultisliderctrl.cpp
parentSNOW-376 Clean up handling of the maximum length of chat messages (diff)
downloadmeta-impy-9cbad86ad87780232b14e1d0bd0b6da81665e6de.zip
meta-impy-9cbad86ad87780232b14e1d0bd0b6da81665e6de.tar.gz
meta-impy-9cbad86ad87780232b14e1d0bd0b6da81665e6de.tar.bz2
meta-impy-9cbad86ad87780232b14e1d0bd0b6da81665e6de.tar.xz
SNOW-413 Potential null pointer exception in multi-slider control
Diffstat (limited to '')
-rw-r--r--linden/indra/llui/llmultisliderctrl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llui/llmultisliderctrl.cpp b/linden/indra/llui/llmultisliderctrl.cpp
index d871947..b76c2f6 100644
--- a/linden/indra/llui/llmultisliderctrl.cpp
+++ b/linden/indra/llui/llmultisliderctrl.cpp
@@ -132,7 +132,7 @@ LLMultiSliderCtrl::LLMultiSliderCtrl(const std::string& name, const LLRect& rect
132 &LLLineEditor::prevalidateFloat ); 132 &LLLineEditor::prevalidateFloat );
133 mEditor->setFollowsLeft(); 133 mEditor->setFollowsLeft();
134 mEditor->setFollowsBottom(); 134 mEditor->setFollowsBottom();
135 mEditor->setFocusReceivedCallback( &LLMultiSliderCtrl::onEditorGainFocus ); 135 mEditor->setFocusReceivedCallback( &LLMultiSliderCtrl::onEditorGainFocus, this );
136 mEditor->setIgnoreTab(TRUE); 136 mEditor->setIgnoreTab(TRUE);
137 // don't do this, as selecting the entire text is single clicking in some cases 137 // don't do this, as selecting the entire text is single clicking in some cases
138 // and double clicking in others 138 // and double clicking in others