diff options
| author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2013-12-26 12:34:50 +0200 | 
|---|---|---|
| committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2013-12-26 12:34:50 +0200 | 
| commit | ab71e294e00270aada33b283bdae7566ef93f6e2 (patch) | |
| tree | e521470e379a9e179d26c0679497d9fb0d47034d | |
| parent | 9af766f582953587ebbfe309eb8d0e6ed0b93493 (diff) | |
MAINT-3570 FIXED Callbacks for menu item are added.
| -rwxr-xr-x | indra/newview/llpreviewscript.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/indra/newview/llpreviewscript.cpp b/indra/newview/llpreviewscript.cpp index e533be7f24..f6f9dc90a9 100755 --- a/indra/newview/llpreviewscript.cpp +++ b/indra/newview/llpreviewscript.cpp @@ -518,6 +518,10 @@ void LLScriptEdCore::initMenu()  	menuItem->setClickCallback(boost::bind(&LLTextEditor::selectAll, mEditor));  	menuItem->setEnableCallback(boost::bind(&LLTextEditor::canSelectAll, mEditor)); +	menuItem = getChild<LLMenuItemCallGL>("Deselect"); +	menuItem->setClickCallback(boost::bind(&LLTextEditor::deselect, mEditor)); +	menuItem->setEnableCallback(boost::bind(&LLTextEditor::canDeselect, mEditor)); +  	menuItem = getChild<LLMenuItemCallGL>("Search / Replace...");  	menuItem->setClickCallback(boost::bind(&LLFloaterScriptSearch::show, this)); | 
