diff options
author | Mm Alder | 2010-01-03 15:02:59 -0500 |
---|---|---|
committer | Mm Alder | 2010-01-03 15:02:59 -0500 |
commit | 9cbad86ad87780232b14e1d0bd0b6da81665e6de (patch) | |
tree | bcbd691dbb9f133bf28528ef5c4e2247a982f167 /linden/indra/llui/llmultisliderctrl.cpp | |
parent | SNOW-376 Clean up handling of the maximum length of chat messages (diff) | |
download | meta-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.cpp | 2 |
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 |