summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Quirk <q@lindenlab.com>2010-02-20 14:41:18 -0500
committerKent Quirk <q@lindenlab.com>2010-02-20 14:41:18 -0500
commit36f708de17c64191c79a756ab7eedc3badac9828 (patch)
tree25c79ce0ae35a344ab1cf883b822372c735f0123
parent4cf6ad1bd68ac2f944b93c1b5fed6d11ac69f56a (diff)
EXT-5560 - filter clear button was calling doDelete which had many more gyrations than onCommit, and only onCommit was needed
-rw-r--r--indra/llui/llsearcheditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llsearcheditor.cpp b/indra/llui/llsearcheditor.cpp
index 491eeeab54..8075575bab 100644
--- a/indra/llui/llsearcheditor.cpp
+++ b/indra/llui/llsearcheditor.cpp
@@ -156,7 +156,7 @@ void LLSearchEditor::setFocus( BOOL b )
void LLSearchEditor::onClearButtonClick(const LLSD& data)
{
setText(LLStringUtil::null);
- mSearchEditor->doDelete(); // force keystroke callback
+ mSearchEditor->onCommit(); // force keystroke callback
}
void LLSearchEditor::handleKeystroke()